R4DS Ch. 13

View()

{utils}

open spreadsheet view of matrix-like object

inner_join()

{dplyr}

join two data sets keeping the observations that they have in common

union()

{base}

return unique observations in x or y

mutate()

{dplyr}

create or modify data columns

right_join()

{dplyr}

join two data sets keeping the observations in the right one

anti_join()

{dplyr}

join two data sets dropping all observations in x that have a match in y

left_join()

{dplyr}

join two data sets keeping the observations in the left one

full_join()

{dplyr}

join two data sets keeping the observations in both

intersect()

{base}

return only observations in both x and y

setdiff()

{base}

return observations in x but not y

semi_join()

{dplyr}

join two data sets keeping all observations in x that have a match in y

count()

{dplyr}

count unique values of variables

merge()

{base}

join two data sets

The end!