Skip to content

topepo/tidyweb

 
 

Repository files navigation

<style> small.tidyverse {display: none;} </style>

The tidyverse

Components

The tidyverse is a collection of R packages that share common philosophies and are designed to work together. This site is a work-in-progress guide to the tidyverse and its packages.

If you are new to the tidyverse, the best place to learn the complete philsophy and how everything fits together is the R for data science book. This book is available for free online, and can you order a physical copy from Amazon.

Installation

Install the complete tidyverse with a single line of code:

install.packages("tidyverse")

Load the core tidyverse packages: ggplot2, tibble, tidyr, readr, purrr, and dplyr. These are the packages you are likely to use in almost every analyis.

library(tidyverse)
#> Loading tidyverse: ggplot2
#> Loading tidyverse: tibble
#> Loading tidyverse: tidyr
#> Loading tidyverse: readr
#> Loading tidyverse: purrr
#> Loading tidyverse: dplyr
#> Conflicts with tidy packages ----------------------------------------------
#> filter(): dplyr, stats
#> lag():    dplyr, stats

Other resources

Releases

No releases published

Packages

No packages published

Languages

  • R 100.0%