DPLYR
dplyr is an R package designed for data manipulation that provides a consistent set of functions to perform common tasks in an intuitive and efficient way
Select columns with dplyr
select() contains() where() matches() starts_with() ends_with() all_of() any_of()
Filter rows with dplyr
filter() slice()
Order rows with the arrange() function from dplyr
arrange() desc()
Rename columns with the rename() function from dplyr
rename() rename_with()
Create and modify columns with the mutate() function from dplyr
mutate() across()
Create statistical summaries with the summarise() function from dplyr
summarise() group_by()