Learn R Programming

sasLM (version 0.10.5)

bk: Beautify the output of knitr::kable

Description

Trailing zeros after integer is somewhat annoying. This removes those in the vector of strings.

Usage

bk(ktab, rpltag=c("n", "N"), dig=10)

Value

A new processed vector of strings. The class is still knitr_kable.

Arguments

ktab

an output of knitr::kable

rpltag

tag string of replacement rows. This is usually "n" which means the sample count.

dig

maximum digits of decimals in the kable output

Author

Kyun-Seop Bae k@acr.kr

Details

This is convenient if used with tsum0, tsum1, tsum2, tsum3, This requires knitr::kable.

See Also

tsum0, tsum1, tsum2, tsum3

Examples

Run this code
## OUTPUT example
# t0 = tsum0(CO2, "uptake", c("mean", "median", "sd", "length", "min", "max"))
# bk(kable(t0)) # requires knitr package
#
# |       |        x|
# |:------|--------:|
# |mean   | 27.21310|
# |median | 28.30000|
# |sd     | 10.81441|
# |n      | 84      |
# |min    |  7.70000|
# |max    | 45.50000|

# t1 = tsum(uptake ~ Treatment, CO2, 
#           e=c("mean", "median", "sd", "min", "max", "length"), 
#           ou=c("chilled", "nonchilled"),
#           repl=list(c("median", "length"), c("med", "N")))
# 
# bk(kable(t1, digits=3)) # requires knitr package
# 
# |     | chilled| nonchilled| Combined|
# |:----|-------:|----------:|--------:|
# |mean |  23.783|     30.643|   27.213|
# |med  |  19.700|     31.300|   28.300|
# |sd   |  10.884|      9.705|   10.814|
# |min  |   7.700|     10.600|    7.700|
# |max  |  42.400|     45.500|   45.500|
# |N    |  42    |     42    |   84    |

Run the code above in your browser using DataLab