Skip to content
R for the Rest of Us Logo

Resources

This carefully curated collection of resources will help you find packages and learning resources to help you on your R journey.

Screenshot of usethis

usethis

usethis is a workflow package that automates repetitive tasks that arise during project setup and development, both for R packages and non-package projects.

Screenshot of Using the tidyverse with Databases

Using the tidyverse with Databases

Using the tidyverse with Databases - Part I is a tutorial that provides an introduction to using databases in R with Tidyverse tools. The tutorial covers topics such as motivation, connecting to a database, using DBI and dplyr functions, executing queries with dbplyr, and more.

Screenshot of ViewPipeSteps

ViewPipeSteps

Create tabs of View() output for each chained pipe

Screenshot of Visualizing {dplyr}’s mutate(), summarize(), group_by(), and ungroup() with animations

Visualizing {dplyr}’s mutate(), summarize(), group_by(), and ungroup() with animations

Andrew Heiss explores {dplyr} functions like mutate(), summarize(), group_by(), and ungroup() through handmade animations. Heiss illustrates the complexities of data manipulation workflow steps that are not immediately obvious when performing operations like adding new columns or summarizing data. This tutorial helps conceptualize the impact of these functions on data frames by visualizing their behind-the-scenes mechanics. The animations serve as an effective teaching tool to demystify what happens to data during different stages of the tidyverse's split/apply/combine paradigm, using handcrafted illustrations to make the learning process more intuitive.

Screenshot of vroom

vroom

vroom is a package in R that provides the fastest delimited reader. It uses lazy loading and multiple threads for improved performance. It supports various parsing features, such as delimiter guessing, custom delimiters, column types specification, and more.

Screenshot of W. Joel Schneider

W. Joel Schneider

This text demonstrates the usage of arrow geometries in ggplot2 for creating custom arrowheads.

What does deprecated mean? Package lifecycle and the process of deprecation. - YouTube

This YouTube video provides an explanation of the meaning of 'deprecated' and discusses the package lifecycle and the process of deprecation.

Screenshot of What is Takes to Tidy Census Data

What is Takes to Tidy Census Data

This article explains the process of tidying Census data using R and tidyverse packages.

Why R? Webinar 037 - D. Gohel - Tabular reporting with the flextable package - YouTube

This is a webinar titled 'Tabular reporting with the flextable package' by D. Gohel. It is a part of the 'Why R?' webinar series and is available on YouTube.

Wildfires in southern Italy🇮🇹 in the last 10 days!

A YouTube video about wildfires in southern Italy in the last 10 days.

Screenshot of Working with categorical data in R without losing your mind

Working with categorical data in R without losing your mind

Working with categorical data in R without losing your mind - This talk outlines common problems arising from categorical variable transformations in R, and shows strategies to avoid them, using both base R and the Tidyverse.

Screenshot of Working with Strings in R: Seattle Pet Names

Working with Strings in R: Seattle Pet Names

This is a tutorial on how to work with strings in R using the 'stringr' package and the 'rebus' package. The tutorial uses the 'Seattle Pet Names' dataset from TidyTuesday and focuses on the names given to cats and dogs. It demonstrates the manipulation of strings by removing punctuation and excess white space from the names.