Skip to content

Commit

Permalink
Merge pull request #1665 from NNPDF/data_th_norm
Browse files Browse the repository at this point in the history
Fixed normalised data-theory comparison errors
  • Loading branch information
Zaharid authored Jan 17, 2023
2 parents dce7973 + 3e45d45 commit 3dfa046
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion validphys2/src/validphys/dataplots.py
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ def _plot_fancy_impl(results, commondata, cutlist,
table[('err', i)] = err
else:
table[cvcol] = cv/norm_cv
table[('err', i)] = err/norm_cv
table[('err', i)] = np.abs(err/norm_cv)
cvcols.append(cvcol)


Expand Down

0 comments on commit 3dfa046

Please sign in to comment.