blob: 72fac201269776b2dc25c53d8f8d026dc99be0c3 [file] [log] [blame]
Hao Zhuf7994dd2017-02-27 16:58:42 -05001#' Add a header row on top of current header
2#'
3#' @description Tables with multiple rows of header rows are extremely useful
4#' to demonstrate grouped data. This function takes the output of a `kable()`
Hao Zhue7c8f702017-10-10 13:22:59 -04005#' function and adds an header row on top of it.
Hao Zhuf7994dd2017-02-27 16:58:42 -05006#'
7#' @param kable_input Output of `knitr::kable()` with `format` specified
8#' @param header A (named) character vector with `colspan` as values. For
9#' example, `c(" " = 1, "title" = 2)` can be used to create a new header row
10#' for a 3-column table with "title" spanning across column 2 and 3. For
11#' convenience, when `colspan` equals to 1, users can drop the ` = 1` part.
12#' As a result, `c(" ", "title" = 2)` is the same as `c(" " = 1, "title" = 2)`.
Hao Zhu32f43f72017-06-20 18:24:54 -040013#' @param bold A T/F value to control whether the text should be bolded.
14#' @param italic A T/F value to control whether the text should to be emphasized.
Hao Zhuac7e70f2017-08-02 00:18:36 -040015#' @param monospace A T/F value to control whether the text of the selected column
16#' need to be monospaced (verbatim)
17#' @param escape A T/F value showing whether special characters should be
18#' escaped.
Hao Zhuf7994dd2017-02-27 16:58:42 -050019#'
Hao Zhu78e61222017-05-24 20:53:35 -040020#' @examples x <- knitr::kable(head(mtcars), "html")
21#' # Add a row of header with 3 columns on the top of the table. The column
22#' # span for the 2nd and 3rd one are 5 & 6.
23#' add_header_above(x, c(" ", "Group 1" = 5, "Group 2" = 6))
24#'
Hao Zhuc1f38412017-02-23 12:13:48 -050025#' @export
Hao Zhuac7e70f2017-08-02 00:18:36 -040026add_header_above <- function(kable_input, header = NULL,
27 bold = FALSE, italic = FALSE,
28 monospace = FALSE, escape = TRUE) {
Hao Zhuc1f38412017-02-23 12:13:48 -050029 kable_format <- attr(kable_input, "format")
30 if (!kable_format %in% c("html", "latex")) {
Hao Zhu401ebd82018-01-14 17:10:20 -050031 warning("Please specify format in kable. kableExtra can customize either ",
32 "HTML or LaTeX outputs. See https://haozhu233.github.io/kableExtra/ ",
33 "for details.")
34 return(kable_input)
Hao Zhuc1f38412017-02-23 12:13:48 -050035 }
36 if (kable_format == "html") {
Hao Zhuac7e70f2017-08-02 00:18:36 -040037 return(htmlTable_add_header_above(kable_input, header,
38 bold, italic, monospace, escape))
Hao Zhuc1f38412017-02-23 12:13:48 -050039 }
40 if (kable_format == "latex") {
Hao Zhuac7e70f2017-08-02 00:18:36 -040041 return(pdfTable_add_header_above(kable_input, header,
42 bold, italic, monospace, escape))
Hao Zhuc1f38412017-02-23 12:13:48 -050043 }
44}
45
46# HTML
Hao Zhuac7e70f2017-08-02 00:18:36 -040047htmlTable_add_header_above <- function(kable_input, header,
48 bold, italic, monospace, escape) {
Hao Zhuc1f38412017-02-23 12:13:48 -050049 if (is.null(header)) return(kable_input)
Hao Zhu909ea382017-06-12 15:43:47 -040050 kable_attrs <- attributes(kable_input)
Hao Zhu558c72f2017-07-24 15:12:00 -040051 kable_xml <- read_kable_as_xml(kable_input)
Hao Zhu62cdde52017-05-20 22:16:03 -040052 kable_xml_thead <- xml_tpart(kable_xml, "thead")
Hao Zhuc1f38412017-02-23 12:13:48 -050053
54 header <- standardize_header_input(header)
55
Hao Zhuac7e70f2017-08-02 00:18:36 -040056 if (escape) {
57 header$header <- escape_html(header$header)
58 }
59
Hao Zhuc1f38412017-02-23 12:13:48 -050060 header_rows <- xml_children(kable_xml_thead)
61 bottom_header_row <- header_rows[[length(header_rows)]]
62 kable_ncol <- length(xml_children(bottom_header_row))
63 if (sum(header$colspan) != kable_ncol) {
64 stop("The new header row you provided has a different total number of ",
65 "columns with the original kable output.")
66 }
67
Hao Zhuac7e70f2017-08-02 00:18:36 -040068 new_header_row <- htmlTable_new_header_generator(header,
69 bold, italic, monospace)
Hao Zhuc1f38412017-02-23 12:13:48 -050070 xml_add_child(kable_xml_thead, new_header_row, .where = 0)
Hao Zhuf2dfd142017-07-24 14:43:28 -040071 out <- as_kable_xml(kable_xml)
Hao Zhu909ea382017-06-12 15:43:47 -040072 attributes(out) <- kable_attrs
Hao Zhuf2100832018-01-11 16:20:29 -050073 if (!"kableExtra" %in% class(out)) class(out) <- c("kableExtra", class(out))
Hao Zhu6a076462017-03-01 12:59:01 -050074 return(out)
Hao Zhuc1f38412017-02-23 12:13:48 -050075}
76
77standardize_header_input <- function(header) {
78 header_names <- names(header)
79
80 if (is.null(header_names)) {
81 return(data.frame(header = header, colspan = 1, row.names = NULL))
82 }
83
84 names(header)[header_names == ""] <- header[header_names == ""]
85 header[header_names == ""] <- 1
86 header_names <- names(header)
87 header <- as.numeric(header)
88 names(header) <- header_names
89 return(data.frame(header = names(header), colspan = header, row.names = NULL))
90}
91
Hao Zhuac7e70f2017-08-02 00:18:36 -040092htmlTable_new_header_generator <- function(header_df, bold, italic, monospace) {
Hao Zhu32f43f72017-06-20 18:24:54 -040093 row_style <- paste0(
94 ifelse(bold, "font-weight: bold; ", ""),
Hao Zhuac7e70f2017-08-02 00:18:36 -040095 ifelse(italic, "font-style: italic; ", ""),
96 ifelse(monospace, "font-family: monospace; ", "")
Hao Zhu32f43f72017-06-20 18:24:54 -040097 )
Hao Zhuc1f38412017-02-23 12:13:48 -050098 header_items <- apply(header_df, 1, function(x) {
Hao Zhuacc7ceb2017-05-26 10:50:25 -070099 if (trimws(x[1]) == "") {
Hao Zhu7f7293e2017-10-27 11:36:18 -0400100 paste0('<th style="border-bottom:hidden" colspan="', x[2], '"></th>')
Hao Zhu6d2faa12017-05-24 02:16:45 -0400101 } else {
Hao Zhuacc7ceb2017-05-26 10:50:25 -0700102 paste0('<th style="text-align:center; border-bottom:hidden; ',
Hao Zhu32f43f72017-06-20 18:24:54 -0400103 'padding-bottom:0; padding-left:3px;padding-right:3px;',
104 row_style,
105 '" colspan="',
Hao Zhu4b0c51e2017-08-01 15:21:07 -0400106 x[2], '"><div style="border-bottom: 1px solid #ddd; padding-bottom: 5px;">',
Hao Zhuacc7ceb2017-05-26 10:50:25 -0700107 x[1], '</div></th>')
Hao Zhu6d2faa12017-05-24 02:16:45 -0400108 }
Hao Zhuc1f38412017-02-23 12:13:48 -0500109 })
110 header_text <- paste(c("<tr>", header_items, "</tr>"), collapse = "")
111 header_xml <- read_xml(header_text, options = c("COMPACT"))
112 return(header_xml)
113}
114
115# Add an extra header row above the current header in a LaTeX table ------
Hao Zhuac7e70f2017-08-02 00:18:36 -0400116pdfTable_add_header_above <- function(kable_input, header,
117 bold, italic, monospace, escape) {
Hao Zhuc1f38412017-02-23 12:13:48 -0500118 table_info <- magic_mirror(kable_input)
119 header <- standardize_header_input(header)
Hao Zhuac7e70f2017-08-02 00:18:36 -0400120 if (escape) {
121 header$header <- escape_latex(header$header)
122 header$header <- gsub("\\\\", "\\\\\\\\", header$header)
123 }
Hao Zhuc1f38412017-02-23 12:13:48 -0500124 hline_type <- switch(table_info$booktabs + 1, "\\\\hline", "\\\\toprule")
Hao Zhu32f43f72017-06-20 18:24:54 -0400125 new_header_split <- pdfTable_new_header_generator(header, table_info$booktabs,
Hao Zhuac7e70f2017-08-02 00:18:36 -0400126 bold, italic, monospace)
Hao Zhu2ce42b92017-06-15 17:15:33 -0400127 new_header <- paste0(new_header_split[1], "\n", new_header_split[2])
Hao Zhub2b41992017-10-03 12:50:03 -0400128 out <- str_replace(enc2utf8(as.character(kable_input)),
129 hline_type,
130 paste0(hline_type, "\n", new_header))
Hao Zhuc1f38412017-02-23 12:13:48 -0500131 out <- structure(out, format = "latex", class = "knitr_kable")
Hao Zhu2ce42b92017-06-15 17:15:33 -0400132 # new_header_row <- latex_contents_escape(new_header_split[1])
133 if (is.null(table_info$new_header_row)) {
134 table_info$new_header_row <- new_header_split[1]
135 table_info$header_df <- list(header)
136 } else {
137 table_info$new_header_row <- c(table_info$new_header_row, new_header_split[1])
138 table_info$header_df[[length(table_info$header_df) + 1]] <- header
139 }
Hao Zhu32f43f72017-06-20 18:24:54 -0400140 attr(out, "kable_meta") <- table_info
Hao Zhuc1f38412017-02-23 12:13:48 -0500141 return(out)
142}
143
Hao Zhu32f43f72017-06-20 18:24:54 -0400144pdfTable_new_header_generator <- function(header_df, booktabs = FALSE,
Hao Zhuac7e70f2017-08-02 00:18:36 -0400145 bold, italic, monospace) {
Hao Zhuc1f38412017-02-23 12:13:48 -0500146 if (booktabs) {
147 header_df$align <- "c"
148 } else {
149 header_df$align <- "|c|"
150 header_df$align[1] <- "c|"
151 header_df$align[nrow(header_df)] <- "|c"
152 }
153 header_items <- apply(header_df, 1, function(x) {
154 # if(x[2] == 1) return(x[1])
Hao Zhu32f43f72017-06-20 18:24:54 -0400155 paste0('\\\\multicolumn{', x[2], '}{', x[3], '}{',
156 ifelse(bold, "\\\\bfseries ", ""),
157 ifelse(italic, "\\\\em ", ""),
Hao Zhuac7e70f2017-08-02 00:18:36 -0400158 ifelse(monospace, "\\\\ttfamily ", ""),
159 x[1],
160 "}")
Hao Zhuc1f38412017-02-23 12:13:48 -0500161 })
162 header_text <- paste(paste(header_items, collapse = " & "), "\\\\\\\\")
Hao Zhu2ce42b92017-06-15 17:15:33 -0400163 cline <- cline_gen(header_df, booktabs)
164 return(c(header_text, cline))
165}
166
167cline_gen <- function(header_df, booktabs) {
Hao Zhuc1f38412017-02-23 12:13:48 -0500168 cline_end <- cumsum(header_df$colspan)
169 cline_start <- c(0, cline_end) + 1
170 cline_start <- cline_start[-length(cline_start)]
Hao Zhuc05e1812017-02-25 01:45:35 -0500171 cline_type <- switch(booktabs + 1,
172 "\\\\cline{",
173 "\\\\cmidrule(l{2pt}r{2pt}){")
Hao Zhuc1f38412017-02-23 12:13:48 -0500174 cline <- paste0(cline_type, cline_start, "-", cline_end, "}")
175 cline <- cline[trimws(header_df$header) != ""]
176 cline <- paste(cline, collapse = " ")
Hao Zhu2ce42b92017-06-15 17:15:33 -0400177 return(cline)
Hao Zhuc1f38412017-02-23 12:13:48 -0500178}
Hao Zhu2ce42b92017-06-15 17:15:33 -0400179
180