From January 31st through February 3rd, Andy Lathrop and I attended rstudio::conf 2018. The conference offered two days of training events and two days of actual conference activities and was a lot of fun. Hosted at the beautiful Manchester Grand Hyatt right on the San Diego harbor, the convention included lots of different talks covering an array of subjects for all skill levels. Couldn’t attend? Don’t worry, I’ll recap the best parts for you.

rstudio::conf 2018 rstudio opener.png
Next year’s conference will be in Austin, Texas, January 15-18, 2019.

About RStudio

This section is mainly for the non-R readers in our midst. RStudiolocated in Boston, is a tech company founded by J.J. Allaire, an acclaimed software engineer and entrepreneur. RStudio Desktop is the company’s flagship product and is the most popular R integrated development environment (IDE) software, used by data scientists and statisticians across the planet. It allows for users to write code, see objects in the coding environment, view plots and tables, and more.

About RStudioAt the conference, one talk covered the enhancements to the software in version 1.1. Highlights included:

  • Connections tab: Allows the user to connect to, explore, and view data in a variety of databases.
  • Terminal tab: Provides shell integration within the IDE so that users can now execute terminal commands without leaving the program.
  • Object explorer enhancements: Easily navigate deeply nested R data structures such as complex lists and S3 objects.
  • UI enhancements: Two new UI themes are available (a modern, flat theme and a dark theme), as well as Retina-quality icons throughout. 

For more information on the 1.1 enhancements, see the RStudio Blog.

In addition to RStudio Desktop, the company also has an array of other products, such as:

  • RStudio Server – A browser-based IDE useful for centralizing access and computation across an organization.
  • Shiny and Shiny Server Pro – Software that provides an elegant and powerful web framework for building web applications using R.
  • RStudio Connect –  A new publishing platform to share Shiny applications, R Markdown reports, plumber APIs, dashboards, plots, and more in one convenient place.

Many of RStudio’s products are open source (AGPL v3), but offer commercial licenses with additional features. Check out the website for more information.

All Things Shiny

Many of the sessions at the event centered around Shiny, a web application development framework for R. Without any knowledge of HTML or CSS, R programmers can create interactive web pages for analyzing data or showing results. At the conference, there were many sessions around designing amazing Shiny dashboards, using API’s with the plumber and Shiny to ingest and return data, and even returning results in real-time of machine learning model training.

mapping Shiny machine learning


I have used Shiny in the past and I must admit that it makes some really nice web apps. So, I’m excited to see the versatility in the platform grow!

See the Shiny Gallery for great examples.

Keeping it Tidy

Another big theme at the conference was the tidyverse. Originally philosophized by Hadley Wickham, RStudio’s Chief Scientist, the tidyverse is a set of packages that share an underlying design philosophy, grammar, and data structures. Hadley’s one-sentence definition of tidy is “Every column is variable, every variable is a column, and every row is an observation.” This attempts to standardize how R functions and packages are written so that each package can work together harmoniously. It was great to see other developers (outside of RStudio) publishing and sharing packages that follow these design practices. I attended multiple sessions where developers were presenting their work and demonstrating the interoperability with the tidyverse library.

tidyverse

Visit the tidyverse website to learn more. 

Prior to the actual conference beginning, a couple hundred of us attended a training session called “Extending the tidyverse”. This session covered some really useful packages for creating a package of your own, testing your packages, and documenting with ease. This really served as a nice walkthrough of the end-to-end process of making a tidy-compliant package in R.

Some big takeaways:

  • The usethis package and R Project files make life easy when you want to make a package.
    • This creates all the files necessary for publishing a package such as NAMESPACE, DESCRIPTION, LICENSE, etc. and an .Rproj file for your code.
    • usethis::create_package("~/Documents/mynewpackage")

  • Test your code with testthat to make sure your functions give you what you expect.
    • Automatically create test files that correspond to each of your functions.
    • usethis::use_test("myfunction")
    • devtools::test()
  • The purrr package is nice for handling redundant function needs and you can ensure stuff won’t fail.
    • purrr::map(input, function)
    • purrr::safely(function)
  • We all know documentation is important. With roxygen2, documentation is as easy as using a special comment.
    • #' My header goes here.
      #'
      #' Some text will go here...
      #'
      #' @param var1 Explanation of var1 

For further reading, check out the R Packages book by Hadley Wickham.

Deep Learning with R

The keynote on day 2 of the conference was given by J.J. Allaire. He and other developers have created the Keras, Estimator, and Core APIs for R, which open the door for deep learning using TensorFlow. For those of you who are unfamiliar, TensorFlow is an open-source machine learning/computational framework (initially developed at Google) and Keras is a high-level interface into many deep-learning frameworks (including TensorFlow, the Microsoft Cognitive Toolkit, and Theano). However, Keras was originally written as a Python library. Using the R Interface to TensorFlow from RStudio, R developers can train complex neural networks and other machine learning models with ease.

RStudio-Logo.png keras-logo.png tensorflow-.png


Yes, you read that correctly — R & deep learning in the same sentence? No, R is still a single-threaded, memory/CPU-based language, which typically isn’t conducive to deep learning. However, R is a great interfacing language that can connect to other environments like a charm. So, this new package simply operates as the liaison between R and TensorFlow. If you don’t have multiple GPU’s in your desktop workstation, fear not! The keynote also demonstrated the ease of use by writing the R training script locally and then deploying it out to a cloud platform to use pay-as-you-go GPU’s for faster training of complex models. Personally, I find this exciting as it opens up R to be more commonly used in large-scale machine learning projects than ever before.

To learn more about the Keras package for R, see the RStudio documentation.

It’s Really All About Stickers

The data science equivalent of collecting Pokémon cards is collecting hex stickers. These are the stickerized versions of the logos for many of our favorite R packages. These stickers often find their home on the laptops of developers as a pseudo-status symbol in the R community. At the conference, it was almost a competition as to who could find and collect the most hex stickers. Even the RStudio employees were making riddles to hint to their sticker hiding places.

I’d say I ended up with a pretty decent collection:

stickers.png

Resources

Special thanks to Petr Simecek for curating the rstudio::conf 2018 resources. You can view his GitHub repository for all the links here.

Want to learn more about how BlueGranite can help solve your organization’s advanced analytics challenges? Contact us today!