dplyr
is a package tailed towards data manipulation.filter()
picks cases based on their values.select()
picks variables based on their names.mutate()
adds new variables that are functions of existing variablessummarise()
reduces multiple values down to a single summary.group_by()
allows to perform any operation by grouping variables.arrange()
changes the ordering of the rows.