R Vocabulary – Week 11
## L20 Intro to the tidyverse
library(ggplot2)
library(readr)
read_csv
read_delim
read_fwf
read_tsv
library(dplyr)
# more later on this
# the magrittr pipe
%>%
# the native pipe
|>
left_join
right_join
full_join
## L21 Shaping data
# Split apply recombine in base R
split()
sapply()
lapply()
do.call() # do.call turns list into arguments
data.frame()
#dplyr
filter()
select()
group_by()
summarize()
summarize_all()
mutate()
do()
# linear model
lm()