REnvironment[]
a container used by RLink to represent any R environment.
REnvironment
REnvironment[]
a container used by RLink to represent any R environment.
Details and Options
- Only the global R environment is fully supported. All other R environments are still represented by REnvironment[], but the specific information about them is lost. Therefore, R objects whose Wolfram Language representation contains references to non-global R environments cannot generally be correctly exported back to R.
- Like RCode, REnvironment is a head providing representation rather than equivalence. Exporting to R objects previously imported to the Wolfram Language (or their parts) containing any of these heads is not guaranteed to produce equivalent objects in the R workspace.
- Expressions with the REnvironment head transform trivially (are left unchanged) by the functions ToRForm and FromRForm.
Examples
Basic Examples (1)
Needs["RLink`"]
InstallR[]This creates a simple linear model:
lm = REvaluate["
{
x <- 1:5
y <- 3 * x + 2
linm <- lm(y~x)
}"];The result is a rather complex R object:
lm // Short[#, 15] &Some parts of this object contain explicit reference to an R environment:
Cases[lm, _[___, _REnvironment, ___], Infinity]This can also be seen as follows:
REvaluate["linm$terms"]Text
Wolfram Research (2012), REnvironment, Wolfram Language function, https://reference.wolfram.com/language/RLink/ref/REnvironment.html.
CMS
Wolfram Language. 2012. "REnvironment." Wolfram Language & System Documentation Center. Wolfram Research. https://reference.wolfram.com/language/RLink/ref/REnvironment.html.
APA
Wolfram Language. (2012). REnvironment. Wolfram Language & System Documentation Center. Retrieved from https://reference.wolfram.com/language/RLink/ref/REnvironment.html
BibTeX
@misc{reference.wolfram_2026_renvironment, author="Wolfram Research", title="{REnvironment}", year="2012", howpublished="\url{https://reference.wolfram.com/language/RLink/ref/REnvironment.html}", note=[Accessed: 13-June-2026]}
BibLaTeX
@online{reference.wolfram_2026_renvironment, organization={Wolfram Research}, title={REnvironment}, year={2012}, url={https://reference.wolfram.com/language/RLink/ref/REnvironment.html}, note=[Accessed: 13-June-2026]}