NEOF Tidyverse

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

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

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

Tip

Hexagonal images, such as the 9 at the top of this page, can be clicked on to bring you to the package/function webpage. You can also right click and open link in new tab, or click with your middle mouse button to open the page in a new tab.

Note

The sections marked with “in development” are currently empty.

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:

Optionally you can run through learnr tutorials made for this website: learnr course

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")

To update Tidyverse check the following link:

Update tidyverse packages

We recommend you run through the learnr tutorials on your own computer with RStudio.

However, if you cannot get it to easily work or you prefer you can run it on the course webVNC you were provided (if you are not on the course you will have to run this through your own computer).

To run the tutorial on the webVNC run the following use script on a new terminal:

. useneoftidytuts

Then follow the instructions on the terminal.