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 in R with dplyr](/images/featured/select-dplyr-r.png)
Select columns with dplyr
select() contains() where() matches() starts_with() ends_with() all_of() any_of()
![Filter rows in R with dplyr](/images/featured/filter-dplyr-r.png)
Filter rows with dplyr
filter() slice()
![Order rows in R with dplyr](/images/featured/arrange-dplyr-r.png)
Order rows with the arrange() function from dplyr
arrange() desc()
![Rename columns in R with dplyr](/images/featured/rename-dplyr-r.png)
Rename columns with the rename() function from dplyr
rename() rename_with()
![Create and modify columns in R with dplyr](/images/featured/mutate-dplyr-r.png)
Create and modify columns with the mutate() function from dplyr
mutate() across()
![The summarise() function from dplyr](/images/featured/summarise-dplyr-r.png)
Create statistical summaries with the summarise() function from dplyr
summarise() group_by()