From 633be55b12c2c86bfefae554d46a3e5074f3aafd Mon Sep 17 00:00:00 2001 From: cfiutak1 Date: Tue, 2 Apr 2019 00:40:25 -0400 Subject: [PATCH] Update Part 1 - Introduction to Machine Learning with scikit-learn.md --- Part 1 - Introduction to Machine Learning with scikit-learn.md | 1 - 1 file changed, 1 deletion(-) diff --git a/Part 1 - Introduction to Machine Learning with scikit-learn.md b/Part 1 - Introduction to Machine Learning with scikit-learn.md index e55cabe..a9abbd5 100644 --- a/Part 1 - Introduction to Machine Learning with scikit-learn.md +++ b/Part 1 - Introduction to Machine Learning with scikit-learn.md @@ -6,7 +6,6 @@ The scikit-learn library comes with some good starting datasets. For today's act from sklearn.datasets import load_digits digits = load_digits() ``` -  To get a better sense of what we're working with, let's take a look at the attributes of `digits`. We can add the following line to our code to see the digit dataset's attributes: ```