Send Mac OS Notifications From R

2013-09-16 UPDATE: I took suggestions from a couple comments, expanded the function a bit and stuck it in a gist. See this comment for details.

The data retrieval and computation operations are taking longer and longer as we start cranking through more security data and I’ll often let tasks run in the background whilst performing more mundane tasks or wasting time on Twitter. For folks using RStudio Desktop on a Mac, you can use the #spiffy terminal-notifier from Julien Blanchard (@julienXX) wrapped in a cozy little R function to alert you when your long-running jobs are complete.

After a quick “gem install terminal-notifier” you just need to add this notify() function to your R repertoire:

notify <- function(message="Operation complete") {
  system(sprintf("/usr/bin/terminal-notifier -title 'RStudio' -message '%s' -sender org.rstudio.RStudio -activate org.rstudio.RStudio",
                 message),
         ignore.stdout=TRUE, ignore.stderr=TRUE, wait=FALSE)
}

and add a call to it right after a potentially long-running operation to get a clickable notification right in the Notification Center:

system("sleep 10")
notify("long computation complete")

Banners_and_Alerts

I’m working on a way to send notifications from RStudio Server when using one of the standalone clients mentioned in a previous post, so stay tuned if you need that functionality as well.

Cover image from Data-Driven Security
Amazon Author Page

6 Comments Send Mac OS Notifications From R

  1. Felix

    Very nice! You can use it with the standard R GUI by replacing “org.rstudio.RStudio” with “org.R-project.R”. Then a click on the message brings you to the R GUI instead of RStudio.

    Reply
  2. hrbrmstr

    I put the function in a gist, added support for RStudio & R GUI (and it even cascades nicely down to message() for R console work). I’ll be updating the gist if any more tips come in. If linux users wish to clone it and modify it to make it it more os-agnostic, I’ll make a note of it in the main gist.

    Reply
  3. Pingback: Send Mac OS Notifications From RStudio *Server*! (via Growl) | rud.is

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.