Construct a table description of a local data.frame.
local_td( d, ..., name = NULL, name_source = wrapr::mk_tmp_name_source("rqltd"), env = parent.frame() )
d | data.frame or name of data.frame to use as a data source. |
---|---|
... | not used, force later arguments to be optional. |
name | if not null name to user for table. |
name_source | temporary name source. |
env | environment to work in. |
a relop representation of the data
#> [1] "mk_td(\"d\", c( \"x\"))" #> x #> 1 1local_td("d")#> [1] "mk_td(\"d\", c( \"x\"))" #> x #> 1 1#> [1] "mk_td(\"d\", c( \"x\"))" #> x #> 1 1#> [1] "mk_td(\"rqltd_24645710206655343053_0000000000\", c( \"x\"))" #> x #> 1 1d %.>% local_td # needs wrapr 1.5.0 or newer to capture name#> [1] "mk_td(\"d\", c( \"x\"))" #> x #> 1 1