Ben Baumer
dplyr
highlightsThe Five Verbs:
select()
filter()
mutate()
arrange()
summarize()
Plus:
group_by()
rename()
inner_join()
left_join()
tbl_df
(more on that later)%>%
or |>
object of class tbl
a re-imagining of a data.frame
it looks and acts like a data.frame
but it’s even better…
tidyverse
works with tibbles
select()
: take a subset of the columnsfilter()
: take a subset of the rowsmutate()
: add or modify a columnarrange()
: sort the rowssummarize()
: collapse to a single row