R Library - DPLYR
Dplyr is an R package used for data manipulation which provides much more concise, readable blocks of data manipulation code once you can understand its syntax. Dplyr is built around 5 verbs: Select, Filter, Arrange, Mutate, and Summarize.
Select - Selects certain columns in your dataframe
Filter - Select specific rows in your dataframe
Arrange - Orders the rows in your dataframe
Mutate - Creates new...
Read more about New Tips from the RCS Stats Team