blob: 4c0831d3fe04910402d941d2dd8ade57071c6751 [file] [log] [blame]
Hao Zhu9410a272020-08-03 01:11:47 -04001#' Dummy html table for testing
2#' @description Create dummy table for testing in kE
3#' @export
4dummy_html_tbl <- function() {
5 return(kable_styling(kable(mtcars[1:5, 1:5], "html",
6 align = c("l", "l", rep("r", 4)))))
7}
8
9#' Dummy latex table for testing
10#' @description Create dummy table for testing in kE
11#' @export
12dummy_latex_tbl <- function(booktabs = T) {
13 return(kable_styling(kable(mtcars[1:5, 1:5], "latex", booktabs = booktabs,
14 align = c("l", "l", rep("r", 4)))))
15}