Deparse: Deparsing of expression

View source: R/Rmeta.R

DeparseR Documentation

Deparsing of expression

Description

Create single character string from R expression

Usage

Deparse(o)

Arguments

o

Expression/Object to be deparsed

Details

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.

Value

single character vector with the deparsed expression

character string with the deparsed R-object

See Also

[deparse()] which this function wraps

[eval()] for the inverse operation

[dput()] similar function

[dget()] similar to eval of character string

Examples

## Not run: 
Deparse(3)
Deparse(1 + 2)
Deparse(matrix(1:10, ncol = 5))
eval(Deparse(matrix(1:10, ncol = 5)))

## End(Not run)

sboehringer/plausibility documentation built on Dec. 6, 2022, 11:34 a.m.