From c6f90b6c8370053b9e6f8892e77c9e3ef6b92346 Mon Sep 17 00:00:00 2001 From: Vitor Mouro <49460655+VitorMouro@users.noreply.github.com> Date: Sun, 4 Jul 2021 16:34:26 -0300 Subject: [PATCH] fix typo --- 2-Regression/1-Tools/assignment.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/2-Regression/1-Tools/assignment.md b/2-Regression/1-Tools/assignment.md index dd58a16970..de37856c51 100644 --- a/2-Regression/1-Tools/assignment.md +++ b/2-Regression/1-Tools/assignment.md @@ -2,7 +2,7 @@ ## Instructions -Take a look at the [Linnerud dataset](https://scikit-learn.org/stable/modules/generated/sklearn.datasets.load_linnerud.html#sklearn.datasets.load_linnerud) in Scikit-learn. This dataset has multiple [targets](https://scikit-learn.org/stable/datasets/toy_dataset.html#linnerrud-dataset): 'It consists of three excercise (data) and three physiological (target) variables collected from twenty middle-aged men in a fitness club'. +Take a look at the [Linnerud dataset](https://scikit-learn.org/stable/modules/generated/sklearn.datasets.load_linnerud.html#sklearn.datasets.load_linnerud) in Scikit-learn. This dataset has multiple [targets](https://scikit-learn.org/stable/datasets/toy_dataset.html#linnerrud-dataset): 'It consists of three exercise (data) and three physiological (target) variables collected from twenty middle-aged men in a fitness club'. In your own words, describe how to create a Regression model that would plot the relationship between the waistline and how many situps are accomplished. Do the same for the other datapoints in this dataset.