# 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 ...
Copyright © 2022 | MH Corporate basic by MH Themes