Deparse | R Documentation |
Create single character string from R expression
Deparse(o)
o |
Expression/Object to be deparsed |
Calls deparse on argument and pastes together the return value of deparse()
resulting
in a single character string. Operates very similar to dput()
, except, it cannot write to
a file.
single character vector with the deparsed expression
character string with the deparsed R-object
[deparse()] which this function wraps
[eval()] for the inverse operation
[dput()] similar function
[dget()] similar to eval of character string
## Not run: Deparse(3) Deparse(1 + 2) Deparse(matrix(1:10, ncol = 5)) eval(Deparse(matrix(1:10, ncol = 5))) ## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.