R4DS Ch. 13

merge()

{base}

join two data sets

right_join()

{dplyr}

join two data sets keeping the observations in the right one

semi_join()

{dplyr}

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

setdiff()

{base}

return observations in x but not y

left_join()

{dplyr}

join two data sets keeping the observations in the left one

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

count()

{dplyr}

count unique values of variables

intersect()

{base}

return only observations in both x and y

View()

{utils}

open spreadsheet view of matrix-like object

anti_join()

{dplyr}

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

full_join()

{dplyr}

join two data sets keeping the observations in both

The end!