Skip to content

Commit 64011e7

Browse files
plakrisenkodweindl
andauthored
fix p-value in the goodness of fit plot (#437)
* fix pvalue in goodness of fit plot Co-authored-by: Daniel Weindl <[email protected]> --------- Co-authored-by: Daniel Weindl <[email protected]>
1 parent 900f8b6 commit 64011e7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

petab/v1/visualize/plot_residuals.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ def plot_goodness_of_fit(
206206
f"$R^2$: {r_value**2:.2f}\n"
207207
f"slope: {slope:.2f}\n"
208208
f"intercept: {intercept:.2f}\n"
209-
f"pvalue: {std_err:.2e}\n"
209+
f"p-value: {p_value:.2e}\n"
210210
f"mean squared error: {mse:.2e}\n",
211211
transform=ax.transAxes,
212212
)

0 commit comments

Comments
 (0)