Your Turn
You’ll be working with the college dataset to run all your analyses.
- Create a new project. Make sure you put it somewhere you’ll be able to find it again later!
- Download the dataset “college.csv” from https://bit.ly/college-dataset
- Create a new R script file or RMarkdown document where you’ll do all of your inferential statistics. Alternatively, download the blank exercises document.
- Import the spreadsheet into a dataframe
college
usingreadr::read_csv()
Solutions
Learn More
To learn more about the summarytools
package, check out its vignette. There is also an in-depth look at the package from Anindya Mozumdar.
The grade_class
variable in the dataset is not a factor, but could become one. To learn about factors, check out Chapter 15 of R for Data Science.
Questions about the lesson? Put them below.