Navigate back to the homepage

An R package for everything | Ep. 1: Making noise with beepr and BRRR

Tobias Busch
January 11th, 2020 · 2 min read

There’s an R package for that!

One of R’s strengths is the vast amount of 3rd party code—packages—that can expand its functionality. There are over 15.000 packages on CRAN, R’s beloved package repository, and many more packages can be found on GitHub, Bioconductor, Neuroconductor, etc.

This series of blog post will unearth some of the lesser known gems: Packages that solve a very specific, perhaps obscure, problem. Packages that will make your life easier or make you scratch your head in wonder. Packages that are useful and packages that are just weird. We will have a look around the ginormous toolshed that is the R package ecosystem. Each episode will highlight another package, the power of R, and its amazing community.


Make R scream with “beepr”

Today we will look at packages that let R play notification sounds. This way R can notify you when your calculations are finished or have crashed, so you don’t have to continuously check on it and can instead browse Reddit read research papers.

The beepr package is a straightforward way to make R play a sound. Here’s how to install the package and play a sound:

1install.packages("beepr")
2library(beepr)
3
4Sys.sleep(3) # replace this with your time-consuming calculation...
5beep()

You can change the default “ping” sound to one of 9 alternatives, including the infamous Wilhelm scream.

1beep(sound = "wilhelm")

beepr can also notify you when R throws an error. Just wrap your error-prone code in the beep_on_error() function like this:

1beep_on_error(stop('I made a huge mistake!'))

Make a Pomodoro timer with beepr

We can use beepr to build ourselves a rudimentary Pomodoro timer. Create a new R script pomodoro_timer.R and add the following code (I’m assuming you are using RStudio, otherwise the notification dialog will not work).

1library(beepr)
2
3counter = 0 # amount of finished pomodoros
4
5while(TRUE) {
6 # 25 minutes work
7 Sys.sleep(60 * 25)
8 counter <- counter + 1
9 beep(sound="mario")
10 rstudioapi::showDialog("Pomodoro timer",
11 sprintf("Pomodoro nr. %i finished! Time to take a break!", counter))
12
13 # 5 minutes break, every 4th break is 15 minute long
14 break_dur <- ifelse(counter %% 4, 5, 15)
15 Sys.sleep(60 * break_dur)
16 beep(sound="wilhelm")
17 rstudioapi::showDialog("Pomodoro timer", "Time to get back to work!")
18}

Of course, the sleep() function will block your R session. To run the code as a background process instead, you can use RStudio’s jobs API. Just run rstudioapi::jobRunScript('./pomodoro-timer.R') or source the pomodoro-timer.R script using the ‘Source as local job’ button in the top right corner of the source panel.

The job should appear in RStudio’s jobs panel, run in the background and remind you when it’s time to take a break.

the 'source as local job' button in RStudio

the Jobs panel in RStudio

You can learn more about beepr here.

Play rapper ad-libs with “BRRR”

The BRRR package’s main (and only?) function skrrrahh() plays sound bites from different rappers. There are 52 different ad-libs for all sorts of situations. To use the package run this:

1if(!require(devtools)) {install.packages("devtools")}
2devtools::install_github("brooke-watson/BRRR")
3library("BRRR")
4
5skrrrahh("kendrick")

To have your favourite artists cheer you on while you are coding, run the following code as an RStudio background job like we did above:

1while (TRUE) {
2 Sys.sleep(sample(5:60)) # randomly pause 5-60 seconds between cheers
3 skrrrahh(-1) # a non-existing number will produce a random ad-lib
4}

You can learn more about BRRR here.

Look ma, no hands!

If you are on a Mac you can make R rap without any packages at all. Simply use the operating system’s built-in text-to-speech engine:

1system("say And if you don\\'t know, now you know!")
2# note the double-backslash needed to escaope the special character

Has Biggie become an integral part of your analysis workflow or do you know other packages that can make R sing, dance, or swallow a sword? Tell me about it! @drtobilotti

Photo by Clem Onojeghuo on Unsplash

More articles from Tobias Busch

A Walk in the Park

The beginning of my D3 journey was a walk in the park.

February 22nd, 2020 · 21 min read

An R package for everything | Ep. 2: Making gaps in axes

Because sometimes less is more.

February 15th, 2020 · 3 min read
© 2021 Tobias Busch
Link to $https://twitter.com/drtobilottiLink to $https://github.com/teebuschLink to $https://instagram.com/tobilottiLink to $https://www.linkedin.com/tobias-busch/