dlab-berkeley / R-Fundamentals

D-Lab's 4 part, 8 hour introduction to R Fundamentals. Learn how to create variables and functions, manipulate data frames, make visualizations, use control flow structures, and more, using R in RStudio.
31 stars 9 forks source link

tidyverse repeat in Part 3 #32

Closed ldliao closed 9 months ago

ldliao commented 9 months ago

unclear if this chunk of code should be run

# install the tidyverse package - note the name of the package needs to be in quotes
install.packages("tidyverse")

# load the package into the current R session - note the name of the package doesn't need to be in quotes (!) and you can use tab complete to see a list of installed packages
library(tidyverse)

# check that tidyverse has been loaded
?tidyverse