From d485774488d1a8e5f7d7f350d2191202f5743af5 Mon Sep 17 00:00:00 2001 From: cif Date: Mon, 2 Mar 2026 17:41:56 +0100 Subject: [PATCH] Updated to Pandas 3.X and corrected typos --- ml2/plot_learning_curve.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ml2/plot_learning_curve.py b/ml2/plot_learning_curve.py index 25f43d8..102c045 100644 --- a/ml2/plot_learning_curve.py +++ b/ml2/plot_learning_curve.py @@ -38,7 +38,7 @@ def plot_learning_curve( train_sizes=np.linspace(0.1, 1.0, 5), ): """ - Generate 3 plots: the test and training learning curve, the training + Generate 3 plots: the test and training learning curve, the training samples vs fit times curve, the fit times vs score curve. Parameters