Deparse: Deparsing of expression

Description Usage Arguments Details Value See Also Examples

View source: R/Rmeta.R

Description

Create single character string from R expression

Usage

1

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

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

## End(Not run)

sboehringer/gwasWeighted documentation built on Dec. 22, 2021, 10:19 p.m.