Articles by Ronan Harrington

Video Games and Sliced

March 22, 2021 | Ronan Harrington

Setup Loading the R libraries and data set.
# Loading libraries
library(tidyverse)

# Reading in the raw data from GitHub (I would use "tt_load", but I hit an API
# rate limt)
games <- readr::read_csv('https://raw.githubusercontent.com/rfordatascience/tidytuesday/master/data/2021/2021-03-16/games.csv')
Plotting Peak vs. Average number of players using 200 observations For this plot, the top 200 observations for average number of players at the same time are selected using slice_max(order_by = avg, n = 200). The peak and average number of players for ...
[Read more...]

Welcome

March 20, 2021 | Ronan Harrington

Welcome to my TidyTuesday blog. This site features graphs and analysis of various data sets from the R for Data Science (R4DS) #TidyTuesday project. [Read more...]

Bechdel Test

March 20, 2021 | Ronan Harrington

Setup Loading the R libraries and data set. # Loading libraries library(gganimate) library(tidytuesdayR) library(tidyverse) library(tidytext) library(forcats) # Loading the Bechdel Test data set tt [Read more...]

Never miss an update!
Subscribe to R-bloggers to receive
e-mails with the latest R posts.
(You will not see this message again.)

Click here to close (This popup will not appear again)