You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
print.xtable.booktabs <- function(x){
|
|
# Make xtable print booktabs tables
|
|
# ARGS: x (matrix)
|
|
require(xtable)
|
|
print(xtable(x), floating=F, hline.after=NULL,
|
|
add.to.row=list(pos=list(-1,0, nrow(x)),
|
|
command=c("\\toprule ", "\\midrule ", "\\bottomrule ")))
|
|
}
|