From the course: Complete Guide to R: Wrangling, Visualizing, and Modeling Data

Unlock the full course today

Join today to access over 23,200 courses taught by industry experts.

The tidyverse

The tidyverse

- [Instructor] One of the fascinating things about packages is that packages can contain other packages. It's this complete self-referential, self inclusive thing. One of the most important packages that you can install in R, which dramatically changes the way that you work with it and improves the functionality, is a package that includes what is called the Tidyverse. Now, this is kind of a funny name. It refers to an article written by very prominent R developer Hadley Wickham several years ago about tidy data, and it talks about setting up your dataset so you have each variable as a column, each observation or case as a row and making it really easy to import. Well, this became sort of an umbrella term. In fact, if you go to the comprehensive R Archive Network for packages and you search by name, these are all the packages that have tidy in their name because they're playing off of what was found to be such a significant way to work with data. The one that we're going to look at is…

Contents