Overview of dplyr verbs
maindplyr provides a grammar of data manipulation using a consistent set of verbs:
mutate(): Adds new variables as functions of existing variables.select(): Picks variables based on their names.filter(): Picks cases (rows) based on their values.summarise(): Reduces multiple values down to a single summary.arrange(): Changes the ordering of the rows.group_by(): Allows any of the above operations to be performed "by group".