10  What’s dplyr package [EN]


author: Юрій Клебан


The dplyr package is one of the most powerful and popular package in R for data manipulation.

Working with data:

The dplyr package makes these steps fast and easy:

Before use you should install package:

# install.packages("dplyr")

Next step is loading package:

library(dplyr)

dplyr functions work with pipes and expect tidy data. In tidy data:

Alternative way is to load tidyverse package with other attached:

# install.packages("tidyverse")
library(tidyverse)

10.1 Refences

  1. dplyr: A Grammar of Data Manipulation on https://cran.r-project.org/.
  2. Data Transformation with splyr::cheat sheet.
  3. DPLYR TUTORIAL : DATA MANIPULATION (50 EXAMPLES) by Deepanshu Bhalla.
  4. Dplyr Intro by Stat 545. 6.R Dplyr Tutorial: Data Manipulation(Join) & Cleaning(Spread). Introduction to Data Analysis
  5. Loan Default Prediction. Beginners data set for financial analytics Kaggle