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: ```