Displaying 1 result from an estimated 1 matches for "titlerul".
Did you mean:
titlerule
2013 Jan 18
0
tables package: How to remove column headings and alignment issues
Dear expeRts,
Here is a minimal example with the latest version of 'tables' (questions below):
require(tables)
saveopts <- table_options(toprule="\\toprule", midrule="\\midrule", bottomrule="\\bottomrule",
titlerule="\\cmidrule(lr)", rowlabeljustification="r")#, justification="r")
## data.frame
x <- expand.grid(beta=as.factor(c("95", "99", "99.9")),
m=as.factor(c(64, 256)),
p=as.factor(c(8, 64, 512)),...