Skip to content

Commit

Permalink
Fix Typo (#491)
Browse files Browse the repository at this point in the history
* Update lesson_1.Rmd

Fix Typo

* Update lesson_1-R.ipynb

Fix Typo
  • Loading branch information
flegaspi700 committed Dec 27, 2021
1 parent a996d05 commit d33b80d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions 2-Regression/1-Tools/solution/R/lesson_1-R.ipynb
Expand Up @@ -153,7 +153,7 @@
"\n",
"Now, let's load the diabetes dataset provided in this source URL: <https://www4.stat.ncsu.edu/~boos/var.select/diabetes.html>\n",
"\n",
"Also, we'll perform a sanity check on our data using `glimpse()` and dsiplay the first 5 rows using `slice()`.\n",
"Also, we'll perform a sanity check on our data using `glimpse()` and display the first 5 rows using `slice()`.\n",
"\n",
"Before going any further, let's also introduce something you will encounter often in R code 🥁🥁: the pipe operator `%>%`\n",
"\n",
Expand Down Expand Up @@ -438,4 +438,4 @@
}
}
]
}
}
2 changes: 1 addition & 1 deletion 2-Regression/1-Tools/solution/R/lesson_1.Rmd
Expand Up @@ -131,7 +131,7 @@ Now that we have data ready, we can see if a machine can help determine a logica

```{r split, message=F, warning=F}
set.seed(2056)
# Split 67% of the data for training and the rest for tesing
# Split 67% of the data for training and the rest for testing
diabetes_split <- diabetes_select %>%
initial_split(prop = 0.67)
Expand Down

0 comments on commit d33b80d

Please sign in to comment.