Syntax Cheat Sheet
Converts data to tbl class. tbl’s are easier to examine than
data frames. R displays only the data that fits onscreen:
dplyr::tbl_df(iris)
Information-dense summary of tbl data.
dplyr::glimpse(iris)
View data set in spreadsheet-like display (note capital V).
utils::View(iris)
Passes object on lef hand side as first argument (or .
argument) of function on righthand side.
dplyr::%>%
Comments