Introduction to the Tidyverse
  • AI Chat
  • Code
  • Report
  • Beta
    Spinner

    Introduction to the Tidyverse

    Run the hidden code cell below to import the data used in this course.

    # Load the Tidyverse
    library(tidyverse)
    
    # Read in the gapminder file
    gapminder <- read.csv("datasets/gapminder.csv", sep = "\t")

    Take Notes

    Add notes about the concepts you've learned and code cells with code you want to keep.

    Add your notes here

    # Add your code snippets here