Merge branch 'develop' into documentation

This commit is contained in:
fjosw 2022-08-12 10:04:42 +00:00
commit 0cfc2d3b02
2 changed files with 2 additions and 2 deletions

View file

@ -825,7 +825,7 @@ class Corr:
hide_from = np.argmax((hide_sigma * np.array(y_err[1:])) > np.abs(y[1:])) - 1
else:
hide_from = None
plt.errorbar(x[:hide_from], y[:hide_from], y_err[:hide_from], label=corr.tag, mfc=plt.rcParams['axes.facecolor'])
ax1.errorbar(x[:hide_from], y[:hide_from], y_err[:hide_from], label=corr.tag, mfc=plt.rcParams['axes.facecolor'])
else:
raise Exception("'comp' must be a correlator or a list of correlators.")

View file

@ -11,7 +11,7 @@ with open(convert_path('pyerrors/version.py')) as ver_file:
setup(name='pyerrors',
version=version['__version__'],
description='Error analysis for lattice QCD',
description='Statistical error analysis for Monte Carlo simulations',
long_description=long_description,
long_description_content_type='text/markdown',
url="https://github.com/fjosw/pyerrors",