From f07eb1406f282f03cf6452da76e79f99689860be Mon Sep 17 00:00:00 2001 From: Jen Looper Date: Fri, 19 Mar 2021 22:05:38 -0400 Subject: [PATCH] edit --- 2-Regression/4-Logistic/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/2-Regression/4-Logistic/README.md b/2-Regression/4-Logistic/README.md index 6ff881cb..f5782d78 100644 --- a/2-Regression/4-Logistic/README.md +++ b/2-Regression/4-Logistic/README.md @@ -199,7 +199,7 @@ Using Seaborn again, plot the model's [Receiving Operating Characteristic](https ![ROC](./images/ROC.png) -Finally, use Scikit-Learn's [`roc_auc_score` API](https://scikit-learn.org/stable/modules/generated/sklearn.metrics.roc_auc_score.html?highlight=roc_auc#sklearn.metrics.roc_auc_score) to compute the actual 'Area Under the Receiver' (AUC): +Finally, use Scikit-Learn's [`roc_auc_score` API](https://scikit-learn.org/stable/modules/generated/sklearn.metrics.roc_auc_score.html?highlight=roc_auc#sklearn.metrics.roc_auc_score) to compute the actual 'Area Under the Curve' (AUC): ```python auc = roc_auc_score(y_test,y_scores[:,1])