Skip to content
Coming soon: Ally. Your guide to the world of AI and R. Learn More →
R for the Rest of Us Logo

Inferential Statistics with R

Introduction to the Dataset

Transcript

Click on the transcript to go to that point in the video. Please note that transcripts are auto generated and may contain minor inaccuracies.

Your Turn

You’ll be working with the college dataset to run all your analyses.

  1. Create a new project. Make sure you put it somewhere you’ll be able to find it again later!

  2. Download the dataset “college.csv” here.

  3. Create a new R script file or RMarkdown document where you’ll do all of your inferential statistics. Alternatively, download the blank exercises document.

  4. Import the spreadsheet into a dataframe college using readr::read_csv()

Learn More

To learn more about the summarytools package, check out its vignette.

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.