March 2021

Introducing popthemes

March 25, 2021 | HighlandR

Back once again with the block rocking themes! Yes, having produced a set of R colour palettes based on Metallica album covers, and then another set of palettes based (loosely) on classic rock album covers, I’ve decided to complete the set w...
[Read more...]

Create Your Personal Cheat Sheets

March 25, 2021 | Quantargo Blog

Create Your Personal Cheat Sheets Cheat Sheets are a handy way to have the most important facts right at your fingertips. Especially when learning new concepts or a whole programming language, cheat sheets can help to stay on top of all the new things...
[Read more...]

Why I love dplyr’s across

March 24, 2021 | R on Will Hipson

Very often I find myself in a situation where I need to perform the same operation on multiple columns in a data set. For this, I turn to none other than dplyr’s across function. But as we’ll see, not only does across help when we are interactively wra... [Read more...]

Mirai Covid-19 App is one year old

March 24, 2021 | Mirai Solutions

A year of Shiny development to continuously catch-up with the worldwide epidemic Covid-19. Back in March a year ago, we were all hit by the fist wave of Covid-19, stupefied, confined at home and with wish of doing something for the community, and at...
[Read more...]

Code Review Example R Code Caret

March 24, 2021 | Onno

Today we will go through a practical code review example. I will analyze some code chunks I used during the Kaggle ACEA challenge. The code chunks come from a function I used to run my final model using Caret in R. Code review is a very important step in any ...
[Read more...]

Pseudo-Randomness: Creating Fake Noise

March 23, 2021 | Learning Machines

In data science, we try to find, sometimes well-hidden, patterns (= signal) in often seemingly random data (= noise). Pseudo-Random Number Generators (PRNG) try to do the opposite: hiding a deterministic data generating process (= signal) by making it look like randomness (= noise). If you want to understand some basics behind the scenes ... [Read more...]

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...]

An Environment for Reliably Rendering Figures in R

March 22, 2021 | R | datawookie

Fathom Data is working on a project to reproduce the figures from the CORE textbook The Economy using R and {ggplot2}. There’s a strict style guide which specifies the figure aesthetics including colours and font. We’re a team of seven people working on as many different setups. The ...
[Read more...]
1 2 3 4 5 12

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)