From 54a73a1671fca9fc667d8d41b6df286caacd5cc9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Franz=20Kir=C3=A1ly?= Date: Sun, 10 Sep 2023 12:14:03 +0200 Subject: [PATCH] [DOC] fixing typo in `plot_crossplot_std` docstring (#69) Fixes a minor typo in `plot_crossplot_std` docstring --- skpro/utils/plotting.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skpro/utils/plotting.py b/skpro/utils/plotting.py index 62824c58b..c389cefc3 100644 --- a/skpro/utils/plotting.py +++ b/skpro/utils/plotting.py @@ -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")