From e21e2d1904097f8741d27212199dfe31b5a24eaa Mon Sep 17 00:00:00 2001 From: Fabian Joswig Date: Fri, 11 Mar 2022 14:54:24 +0000 Subject: [PATCH] fix: formatting of qqplot fixed --- pyerrors/fits.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyerrors/fits.py b/pyerrors/fits.py index 17da5e71..cfb10907 100644 --- a/pyerrors/fits.py +++ b/pyerrors/fits.py @@ -625,7 +625,7 @@ def qqplot(x, o_y, func, p): fit_stop = my_x[-1] samples = np.arange(fit_start, fit_stop, 0.01) plt.plot(samples, samples, 'k--', zorder=11, label='Standard normal distribution') - plt.plot(samples, probplot[1][0] * samples + probplot[1][1], zorder=10, label='Least squares fit, r=' + str(np.around(probplot[1][2], 3))) + plt.plot(samples, probplot[1][0] * samples + probplot[1][1], zorder=10, label='Least squares fit, r=' + str(np.around(probplot[1][2], 3)), marker='', ls='-') plt.xlabel('Theoretical quantiles') plt.ylabel('Ordered Values')