From d660b665b4dcde1d2a39fc3bc775753a5a1573f8 Mon Sep 17 00:00:00 2001 From: FerPicado Date: Thu, 28 Mar 2024 01:46:36 -0600 Subject: [PATCH] Fix typo in 'end-to-end-heart-disease-classification.ipynb' --- .../end-to-end-heart-disease-classification.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/section-3-structured-data-projects/end-to-end-heart-disease-classification.ipynb b/section-3-structured-data-projects/end-to-end-heart-disease-classification.ipynb index 993e64bc8..e8cffbef0 100644 --- a/section-3-structured-data-projects/end-to-end-heart-disease-classification.ipynb +++ b/section-3-structured-data-projects/end-to-end-heart-disease-classification.ipynb @@ -3519,7 +3519,7 @@ "\n", "Reading the documentation on the [`RocCurveDisplay`](https://scikit-learn.org/stable/modules/generated/sklearn.metrics.RocCurveDisplay.html) function we can see it has a class method called [`from_estimator(estimator, X, y)`](https://scikit-learn.org/stable/modules/generated/sklearn.metrics.RocCurveDisplay.html#sklearn.metrics.RocCurveDisplay.from_estimator) as inputs. \n", "\n", - "Where `estiamator` is a fitted machine learning model and `X` and `y` are the data you'd like to test it on.\n", + "Where `estimator` is a fitted machine learning model and `X` and `y` are the data you'd like to test it on.\n", "\n", "In our case, we'll use the GridSearchCV version of our `LogisticRegression` estimator, `gs_log_reg` as well as the test data, `X_test` and `y_test`." ]