Learn R: Data Frames
Learn how to organize and modify data in R using data frames and dplyr.
StartKey Concepts
Review core concepts you need to learn to master this subject
dplyr package
data frame object
Excluding Columns with select() in Dplyr
Loading and Saving CSVs with R
filter with logical operators
Dplyr’s filter()
data frames primary information
Dplyr’s select()
dplyr package
dplyr package
The dplyr package provides functions that perform data manipulation operations oriented to explore and manipulate datasets. At the most basic level, the package functions refers to data manipulation “verbs” such as select, filter, mutate, arrange, summarize among others that allow to chain multiple steps in a few lines of code. The dplyr package is suitable to work with a single dataset as well as to achieve complex results in large datasets.
What you'll create
Portfolio projects that showcase your new skills
How you'll master it
Stress-test your knowledge with quizzes that help commit syntax to memory