Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.
Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.
Path: blob/master/r/rmagic.ipynb
Views: 925
Rmagic in IPython
NOTE: When running in CoCalc, this notebook must be run using the Classical Jupyter notebook.
This file is part of the examples collection of the Sagemath Cloud.
Rmagic is an extension for IPython. Check out the full IPython notebook for additional details! It is based on RPy2 and allows to seamlessly talk to an underlying R session via an IPython notebook.
To activate it, see the cell below. There are basically only a few core commands:
%R
runs a line of R code, return values can be assigned viavar = %R ...
.%%R -i <input> -o <output> ...
runs the entire cell in R and-i
and-o
specify the variables for input and output.%Rpush ...
sends the data of a given variable to R.%Rpull ...
retrieves the variable (namespace is populated) and the data of a variable inside R.%Rget ...
is similar toRpull
, but only retrieves the actual data.
a
only exists in R, hence the following error:
---------------------------------------------------------------------------
NameError Traceback (most recent call last)
<ipython-input-5-60b725f10c9c> in <module>()
----> 1 a
NameError: name 'a' is not defined
%Rget
pulls and converts the data into Python:
%Rpull
is similar, and defines the variable, too:
%%R
runs the given cell in R and -o [variable]
"outputs" it to Python
Plots
Basically, they are stright forward. Multiple simultaneous plots are displayed accordingly.
Interested in the coefficients?
Use R's slot accessor $
via a call to R in %R
to retrieve the coefficients as a NumPy array.
Plotting in a 2x2 grid via R's par
command and setting the output canvas size to 800x600 pixels.
Advanced Example: PCA
The pca_usarrest
variable references a datastructure from R. Applying R functions via RPy2 directly is no problem.
R Help on ‘sum’sum package:base R Documentation
Sum of Vector Elements
Description:
‘sum’ returns the sum of all the values present in its arguments.
Usage:
sum(..., na.rm = FALSE)
Arguments:
...: numeric or complex or logical vectors.
na.rm: logical. Should missing values (including ‘NaN’) be removed?
Details:
This is a generic function: methods can be defined for it directly
or via the ‘Summary’ group generic. For this to work properly,
the arguments ‘...’ should be unnamed, and dispatch is on the
first argument.
If ‘na.rm’ is ‘FALSE’ an ‘NA’ or ‘NaN’ value in any of the
arguments will cause a value of ‘NA’ or ‘NaN’ to be returned,
otherwise ‘NA’ and ‘NaN’ values are ignored.
Logical true values are regarded as one, false values as zero.
For historical reasons, ‘NULL’ is accepted and treated as if it
were ‘integer(0)’.
Loss of accuracy can occur when summing values of different signs:
this can even occur for sufficiently long integer inputs if the
partial sums would cause integer overflow. Where possible
extended-precision accumulators are used, but this is
platform-dependent.
Value:
The sum. If all of ‘...’ are of type integer or logical, then the
sum is integer, and in that case the result will be ‘NA’ (with a
warning) if integer overflow occurs. Otherwise it is a length-one
numeric or complex vector.
*NB:* the sum of an empty set is zero, by definition.
S4 methods:
This is part of the S4 ‘Summary’ group generic. Methods for it
must use the signature ‘x, ..., na.rm’.
‘plotmath’ for the use of ‘sum’ in plot annotation.
References:
Becker, R. A., Chambers, J. M. and Wilks, A. R. (1988) _The New S
Language_. Wadsworth & Brooks/Cole.
See Also:
‘colSums’ for row and column sums.
Examples:
## Pass a vector to sum, and it will add the elements together.
sum(1:5)
## Pass several numbers to sum, and it also adds the elements.
sum(1, 2, 3, 4, 5)
## In fact, you can pass vectors into several arguments, and everything gets added.
sum(1:2, 3:5)
## If there are missing values, the sum is unknown, i.e., also missing, ....
sum(1:5, NA)
## ... unless we exclude missing values explicitly:
sum(1:5, NA, na.rm = TRUE)