NEOF Tidyverse

This is a resource for the R Tidyverse suite of packages. It is intended as a quick one-stop reference for the various tidyverse packages and their functions, also known as a cookbook.

This website does not go into great details rather it provides:

This webpage is split into sections for each of the main packages in tidyverse. These are:

Reading order

If you are starting out with Tidyverse I recommend reading through the website in the above order. The above sections can be grouped into the following chapters:

Package names

To keep consistent we will include the package name of each function used in code. This is carried out like below.

Note: Don’t run the below command

#Use as_tibble function from tibble package
tibble::as_tibble()

Installation & loading

Ensure you have tidyverse installed and loaded before running commands within the rest of these materials.

You can install all the tidyverse packages with the following command:

install.packages("tidyverse")

Once installed you can load the package suite:

library("tidyverse")