as.rtable(x, ...)
# S3 method for class 'data.frame'
as.rtable(x, format = "xx.xx", ...)
An rtables
table object. Note that the concrete class will depend on the method used.
as.rtable(data.frame)
: Method for converting a data.frame
that contains numeric columns to rtable
.
x <- data.frame(
a = 1:10,
b = rnorm(10)
)
as.rtable(x)
#> a b
#> ——————————————————
#> 1 1.00 0.07
#> 2 2.00 -0.64
#> 3 3.00 -0.05
#> 4 4.00 -0.25
#> 5 5.00 0.44
#> 6 6.00 2.76
#> 7 7.00 0.05
#> 8 8.00 0.58
#> 9 9.00 0.12
#> 10 10.00 -1.91