R and Python in one Jupyter notebook

PythonRPython 2.7IpythonJupyter Notebook

Python Problem Overview


Is it possible to run R and Python code in the same Jupyter notebook. What are all the alternatives available?

  1. Install r-essentials and create R notebooks in Jupyter.
  2. Install rpy2 and use rmagic functions.
  3. Use a beaker notebook.

Which of above 3 options is reliable to run Python and R code snippets (sharing variables and visualizations) or is there a better option already?

Python Solutions


Solution 1 - Python

Yes, it is possible! Use rpy2.

You can install rpy2 with: pip install rpy2

Then run %load_ext rpy2.ipython in one of your cells. (You only have to run this once.)

Now you can do the following:

Python cell:

# enables the %%R magic, not necessary if you've already done this
%load_ext rpy2.ipython

import pandas as pd
df = pd.DataFrame({
    'cups_of_coffee': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
    'productivity': [2, 5, 6, 8, 9, 8, 0, 1, 0, -1]
})

R cell:

%%R -i df -w 5 -h 5 --units in -r 200
# import df from global environment
# make default figure size 5 by 5 inches with 200 dpi resolution

install.packages("ggplot2", repos='http://cran.us.r-project.org', quiet=TRUE)
library(ggplot2)
ggplot(df, aes(x=cups_of_coffee, y=productivity)) + geom_line()

And you'll get your pretty figure plotting data from a python Pandas DataFrame.

Solution 2 - Python

Using @uut's answer for running R in a jupyter notebook within python kernel (in MacOS), the following worked for me.

%%Rshould always be at the start of the cell else you will get the error as shown in figure belowsyntax error if %%R not at the top of the cell

The following is the right way:Right way to invoke R within python kernel

Also %load_ext rpy2.ipython should come before %%R hence put it in a different cell above it as shown in the figures.

Solution 3 - Python

UPDATE April 2018,

RStudio has also put out a package: https://blog.rstudio.com/2018/03/26/reticulate-r-interface-to-python/

for which it is possible to run multiple code chunks in different languages using the R markdown notebook, which is similar to a jupyter notebook.

In my previous post, I said that the underlying representation of objects is different. Actually here is a more nuanced discussion of the underlying matrix representation of R and python from the same package: https://rstudio.github.io/reticulate/articles/arrays.html

Old post:

It will be hard for you to use both R and Python syntax in the same notebook, mostly because the underlying representation of objects in the two languages are different. That said, there is a project that does try to allow conversion of objects and different languages in the same notebook: http://beakernotebook.com/features

I haven't used it myself but it looks promising

Solution 4 - Python

SoS kernel is another option.

Don't know how well it performs yet, just started using it.

The SoS kernel allows you to run different languages within the same notebook, including Python and R.

SoS Polyglot Notebook - Instructions for Installing Desired Languages

Here is an example of a notebook with Python and R cells.


*Update:

In terms of sharing variables, one can use the magics %use and %with. "SoS automatically shares variables with names starting with sos among all subkernels"1.

Ex.

Starting cell in R:

%use R
sos_var=read.csv('G:\\Somefile.csv')
dim(sos_var)

Output:

51  13

Switching to python:

%with Python3
sos_var.shape

Output:

(51, 13)

Solution 5 - Python

A small addition to @uut's answer and @msh's comment: If you are using rpy2 in Jupyter Notebooks you also have access to R objects (e.g. data frames) from Python cells:

import rpy2.robjects as robjects
robjects.globalenv['some-variable-name']

To view the names of all available variables use:

list(robjects.globalenv.keys())

Details are explained here: https://stackoverflow.com/questions/20630121/pandas-how-to-convert-r-dataframe-back-to-pandas/20808449

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionSailendra PinupoluView Question on Stackoverflow
Solution 1 - PythonuutView Answer on Stackoverflow
Solution 2 - PythonAbhimanu KumarView Answer on Stackoverflow
Solution 3 - PythonAllen WangView Answer on Stackoverflow
Solution 4 - Pythonrm1104View Answer on Stackoverflow
Solution 5 - PythonJonathan OesterleView Answer on Stackoverflow