Cloud Immersion Experience: Kubernetes in Action on Azure
June 10, 2019Bluetooth Attacks | Don’t Let Your Endpoints Down
June 10, 2019At Next ’19, we announced the beta availability of AI Platform Notebooks, our managed service that offers an integrated environment to create JupyterLab instances that come pre-installed with the latest data science and machine learning frameworks. Today, we’re excited to introduce support for R on AI Platform Notebooks. You can now spin up a web-based development environment with JupyterLab, IRkernel, xgboost, ggplot2, caret, rpy2 and other key R libraries pre-installed.
The R language is a powerful tool for data science, and has been popular with data engineers, data scientists, and statisticians everywhere since its first release in 1992. It offers a sprawling collection of open source libraries that contain implementations of a huge variety of statistical techniques. For example, the Bioconductor library contains state of the art tools for analyzing genomic data. Likewise, with the forecast package you can carry out very sophisticated time series analysis using models like ARIMA, ARMA, AR, and exponential smoothing. Or, if you prefer building deep learning models, you could use TensorFlow for R.
Users of R can now leverage AI Platform Notebooks to create instances that can be accessed via the web or via SSH. This means you can install the libraries you care about; and you can easily scale your notebook instances up or down.
Getting started is easy
You can get started by navigating to the AI Platform and clicking on Notebooks. Then:
1. Click on “New Instance” and select R 3.5.3 (the first option).
2. Give your instance a name and hit “Create”.
In a few seconds your Notebook instance will show up in the list of instances available to you.
You can access the instance by clicking on “Open JupyterLab”.
This brings up the JupyterLab Launcher. From here you can do these three things:
1. Create a new Jupyter Notebook using IRKernel by clicking on the R button under Notebook.
2. Bring up an iPython style console for R by clicking on the R button under Console.
3. Open up a terminal by clicking on the terminal button under Other.
For fun, let’s create a new R notebook and visualize the infamous ‘Iris’ dataset, which consists of the measurements of the size of various parts of an Iris labeled by the particular species of Iris. It’s a good dataset for trying out simple clustering algorithms.
1. Create a new R notebook by clicking on the R button under Notebooks.
2. In the first cell, type in:
data(iris)
head(iris)
This will let you see the first 6 rows of the Iris data set.
3. Next, let’s plot Petal.Length against Sepal.Length:library('ggplot2')
ggplot(iris, aes(x = Petal.Length, y = Sepal.Length, colour = Species)) +
geom_point() +
ggtitle('Iris Species by Petal and Sepal Length')