Skip to content

Introduction to the Tidyverse

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


1 hidden cell

Take Notes

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

Add your notes here

# data visualization
ggplot(gapminder_1952, aes(x = pop, y = gdpPercap)) +
  geom_point()