|
SOLUTIONS
|
RLINK SYMBOL
RSet
![]()
assigns the value of the Mathematica expression expr to a variable var in the R workspace, returning back the value of expr upon success and $Failed upon failure.
DetailsDetails
- Use
to send Mathematica expressions to R. - The variable name var must be a string, but is not restricted to be the name of a valid R variable. It can actually be any piece of R code, which represents a legal lhs for the purposes of assignments in R (it is an L-value).
- The expression expr must be of the type convertible to R. Normally, you can use the ToRForm function to obtain an internal RLink representation for Mathematica expressions you want to send to R, and at the same time test whether or not your expression is legal.
works with both the short and long (internal) forms of the expression expr. The form of an expression that is returned is the same as the one used for expr.
ExamplesExamplesopen allclose all
Basic Examples (5)Basic Examples (5)
| In[1]:= |
| In[1]:= |
| Out[1]= |
| In[2]:= |
| Out[2]= |
| In[3]:= |
| Out[3]= |
Change the dimensions of the vector v in R:
| In[1]:= |
| Out[1]= |
| In[2]:= |
| Out[2]= |
| In[3]:= |
| Out[3]= |
Compute a matrix product in R:
| In[4]:= |
| Out[4]= |
| In[5]:= |
| Out[5]= |
Send a nested list to R (which will be stored as an R list):
| In[1]:= |
| Out[1]= |
Test the type of R lst variable:
| In[2]:= |
| Out[2]= |
Assign a different expression to the first part of the list:
| In[3]:= |
| Out[3]= |
| In[4]:= |
| Out[4]= |
Sending an expression that cannot be converted to one of the R types fails:
You can see that also by using ToRForm:
Mathematica 9 is now available!
New to Mathematica?
Find your learning path »
Have a question?
Ask support »
