Skip to content

Commit

Permalink
[DOC] fixing typo in plot_crossplot_std docstring (#69)
Browse files Browse the repository at this point in the history
Fixes a minor typo in `plot_crossplot_std` docstring
  • Loading branch information
fkiraly authored Sep 10, 2023
1 parent 83ca5a8 commit 54a73a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion skpro/utils/plotting.py
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ def plot_crossplot_std(y_true, y_pred, ax=None):
y_std.values.flatten(),
"b.",
)
ax.set_ylabel(r"Predictive variance of $\widehat{y}_i$")
ax.set_ylabel(r"Predictive standard deviation of $\widehat{y}_i$")
ax.set_xlabel(r"Absolute errors $|y_i - \widehat{y}_i|$")
# ax.legend(loc="best")

Expand Down

0 comments on commit 54a73a1

Please sign in to comment.