blob: 4c0831d3fe04910402d941d2dd8ade57071c6751 [file] [log] [blame]
#' Dummy html table for testing
#' @description Create dummy table for testing in kE
#' @export
dummy_html_tbl <- function() {
return(kable_styling(kable(mtcars[1:5, 1:5], "html",
align = c("l", "l", rep("r", 4)))))
}
#' Dummy latex table for testing
#' @description Create dummy table for testing in kE
#' @export
dummy_latex_tbl <- function(booktabs = T) {
return(kable_styling(kable(mtcars[1:5, 1:5], "latex", booktabs = booktabs,
align = c("l", "l", rep("r", 4)))))
}