Skip to content

Commit 68ca582

Browse files
committed
fix pvalue in goodness of fit plot
1 parent 89e9fec commit 68ca582

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"pvalue: {p_value:.2e}\n"
210210
f"mean squared error: {mse:.2e}\n",
211211
transform=ax.transAxes,
212212
)

0 commit comments

Comments
 (0)