Arguments
- x
 the object which should be converted to an
rtable.- ...
 additional arguments for methods.
- format
 the format which should be used for the columns.
Methods (by class)
as.rtable(data.frame): method for convertingdata.framethat contain numeric columns tortable.
Examples
x <- data.frame(
  a = 1:10,
  b = rnorm(10)
)
as.rtable(x)
#>        a       b  
#> ——————————————————
#> 1    1.00    -1.57
#> 2    2.00    0.21 
#> 3    3.00    1.29 
#> 4    4.00    0.85 
#> 5    5.00    0.17 
#> 6    6.00    0.88 
#> 7    7.00    0.71 
#> 8    8.00    -0.35
#> 9    9.00    0.87 
#> 10   10.00   1.13