blob: a0c37f35625855893c35e47f98d3f1a6f33a2a08 [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)
Hao Zhu3465b502018-04-02 22:41:46 -040017#' @param align A character string for cell alignment. For HTML, possible values could
18#' be `l`, `c`, `r` plus `left`, `center`, `right`, `justify`, `initial` and `inherit`
19#' while for LaTeX, you can only choose from `l`, `c` & `r`.
Hao Zhuac7e70f2017-08-02 00:18:36 -040020#' @param escape A T/F value showing whether special characters should be
21#' escaped.
Salzer6bc84f82018-02-11 13:18:01 -050022#' @param line A T/F value to control whether a line will appear underneath the
23#' header
Hao Zhuf7994dd2017-02-27 16:58:42 -050024#'
Hao Zhu78e61222017-05-24 20:53:35 -040025#' @examples x <- knitr::kable(head(mtcars), "html")
26#' # Add a row of header with 3 columns on the top of the table. The column
27#' # span for the 2nd and 3rd one are 5 & 6.
28#' add_header_above(x, c(" ", "Group 1" = 5, "Group 2" = 6))
29#'
Hao Zhuc1f38412017-02-23 12:13:48 -050030#' @export
Hao Zhuac7e70f2017-08-02 00:18:36 -040031add_header_above <- function(kable_input, header = NULL,
32 bold = FALSE, italic = FALSE,
Hao Zhu3465b502018-04-02 22:41:46 -040033 monospace = FALSE, align = "c",
34 escape = TRUE, line = TRUE) {
Hao Zhuc1f38412017-02-23 12:13:48 -050035 kable_format <- attr(kable_input, "format")
36 if (!kable_format %in% c("html", "latex")) {
Hao Zhu401ebd82018-01-14 17:10:20 -050037 warning("Please specify format in kable. kableExtra can customize either ",
38 "HTML or LaTeX outputs. See https://haozhu233.github.io/kableExtra/ ",
39 "for details.")
40 return(kable_input)
Hao Zhuc1f38412017-02-23 12:13:48 -050041 }
42 if (kable_format == "html") {
Hao Zhu3465b502018-04-02 22:41:46 -040043 return(htmlTable_add_header_above(kable_input, header, bold, italic,
44 monospace, align, escape,line))
Hao Zhuc1f38412017-02-23 12:13:48 -050045 }
46 if (kable_format == "latex") {
Hao Zhu3465b502018-04-02 22:41:46 -040047 return(pdfTable_add_header_above(kable_input, header, bold, italic,
48 monospace, align, escape,line))
Hao Zhuc1f38412017-02-23 12:13:48 -050049 }
50}
51
52# HTML
Hao Zhu3465b502018-04-02 22:41:46 -040053htmlTable_add_header_above <- function(kable_input, header, bold, italic,
54 monospace, align, escape, line) {
Hao Zhuc1f38412017-02-23 12:13:48 -050055 if (is.null(header)) return(kable_input)
Hao Zhu909ea382017-06-12 15:43:47 -040056 kable_attrs <- attributes(kable_input)
Hao Zhu558c72f2017-07-24 15:12:00 -040057 kable_xml <- read_kable_as_xml(kable_input)
Hao Zhu62cdde52017-05-20 22:16:03 -040058 kable_xml_thead <- xml_tpart(kable_xml, "thead")
Hao Zhuc1f38412017-02-23 12:13:48 -050059
60 header <- standardize_header_input(header)
61
Hao Zhuac7e70f2017-08-02 00:18:36 -040062 if (escape) {
63 header$header <- escape_html(header$header)
64 }
65
Hao Zhuc1f38412017-02-23 12:13:48 -050066 header_rows <- xml_children(kable_xml_thead)
67 bottom_header_row <- header_rows[[length(header_rows)]]
68 kable_ncol <- length(xml_children(bottom_header_row))
69 if (sum(header$colspan) != kable_ncol) {
70 stop("The new header row you provided has a different total number of ",
71 "columns with the original kable output.")
72 }
73
Hao Zhu3465b502018-04-02 22:41:46 -040074 new_header_row <- htmlTable_new_header_generator(header, bold, italic,
75 monospace,align, line)
Hao Zhuc1f38412017-02-23 12:13:48 -050076 xml_add_child(kable_xml_thead, new_header_row, .where = 0)
Hao Zhuf2dfd142017-07-24 14:43:28 -040077 out <- as_kable_xml(kable_xml)
Hao Zhu23456762018-03-26 12:30:10 -040078 if (is.null(kable_attrs$header_above)) {
79 kable_attrs$header_above <- 1
80 } else {
81 kable_attrs$header_above <- kable_attrs$header_above + 1
82 }
Hao Zhu909ea382017-06-12 15:43:47 -040083 attributes(out) <- kable_attrs
Hao Zhuf2100832018-01-11 16:20:29 -050084 if (!"kableExtra" %in% class(out)) class(out) <- c("kableExtra", class(out))
Hao Zhu6a076462017-03-01 12:59:01 -050085 return(out)
Hao Zhuc1f38412017-02-23 12:13:48 -050086}
87
88standardize_header_input <- function(header) {
89 header_names <- names(header)
90
91 if (is.null(header_names)) {
92 return(data.frame(header = header, colspan = 1, row.names = NULL))
93 }
94
95 names(header)[header_names == ""] <- header[header_names == ""]
96 header[header_names == ""] <- 1
97 header_names <- names(header)
98 header <- as.numeric(header)
99 names(header) <- header_names
100 return(data.frame(header = names(header), colspan = header, row.names = NULL))
101}
102
Hao Zhu3465b502018-04-02 22:41:46 -0400103htmlTable_new_header_generator <- function(header_df, bold, italic,
104 monospace, align, line) {
105 if (align %in% c("l", "c", "r")) {
106 align <- switch(align, r = "right", c = "center", l = "left")
107 }
Hao Zhu32f43f72017-06-20 18:24:54 -0400108 row_style <- paste0(
Hao Zhu3465b502018-04-02 22:41:46 -0400109 paste0("text-align: ", align, "; "),
Hao Zhu32f43f72017-06-20 18:24:54 -0400110 ifelse(bold, "font-weight: bold; ", ""),
Hao Zhuac7e70f2017-08-02 00:18:36 -0400111 ifelse(italic, "font-style: italic; ", ""),
112 ifelse(monospace, "font-family: monospace; ", "")
Hao Zhu32f43f72017-06-20 18:24:54 -0400113 )
Hao Zhuc1f38412017-02-23 12:13:48 -0500114 header_items <- apply(header_df, 1, function(x) {
Hao Zhuacc7ceb2017-05-26 10:50:25 -0700115 if (trimws(x[1]) == "") {
Hao Zhu7f7293e2017-10-27 11:36:18 -0400116 paste0('<th style="border-bottom:hidden" colspan="', x[2], '"></th>')
Hao Zhu6d2faa12017-05-24 02:16:45 -0400117 } else {
Hao Zhu3465b502018-04-02 22:41:46 -0400118 paste0('<th style="border-bottom:hidden; ',
Hao Zhu32f43f72017-06-20 18:24:54 -0400119 'padding-bottom:0; padding-left:3px;padding-right:3px;',
120 row_style,
121 '" colspan="',
Salzer6bc84f82018-02-11 13:18:01 -0500122 x[2], '"><div style="',
123 ifelse(line,'border-bottom: 1px solid #ddd; padding-bottom: 5px;">','">'),
Hao Zhuacc7ceb2017-05-26 10:50:25 -0700124 x[1], '</div></th>')
Hao Zhu6d2faa12017-05-24 02:16:45 -0400125 }
Hao Zhuc1f38412017-02-23 12:13:48 -0500126 })
127 header_text <- paste(c("<tr>", header_items, "</tr>"), collapse = "")
128 header_xml <- read_xml(header_text, options = c("COMPACT"))
129 return(header_xml)
130}
131
132# Add an extra header row above the current header in a LaTeX table ------
Hao Zhu3465b502018-04-02 22:41:46 -0400133pdfTable_add_header_above <- function(kable_input, header, bold, italic,
134 monospace, align, escape, line) {
Hao Zhuc1f38412017-02-23 12:13:48 -0500135 table_info <- magic_mirror(kable_input)
136 header <- standardize_header_input(header)
Hao Zhu248bbef2018-04-02 18:25:14 -0400137
Hao Zhuac7e70f2017-08-02 00:18:36 -0400138 if (escape) {
Hao Zhuc7865132018-04-02 13:47:39 -0400139 header$header <- escape_latex2(header$header)
Hao Zhu3465b502018-04-02 22:41:46 -0400140 header$header <- linebreak(header$header, align = align, double_escape = TRUE)
Hao Zhuac7e70f2017-08-02 00:18:36 -0400141 }
Hao Zhu248bbef2018-04-02 18:25:14 -0400142
Hao Zhu3465b502018-04-02 22:41:46 -0400143 align <- match.arg(align, c("c", "l", "r"))
Hao Zhu248bbef2018-04-02 18:25:14 -0400144
Hao Zhuc1f38412017-02-23 12:13:48 -0500145 hline_type <- switch(table_info$booktabs + 1, "\\\\hline", "\\\\toprule")
Hao Zhu3465b502018-04-02 22:41:46 -0400146 new_header_split <- pdfTable_new_header_generator(
147 header, table_info$booktabs, bold, italic, monospace, align)
Salzer6bc84f82018-02-11 13:18:01 -0500148 if(line){
149 new_header <- paste0(new_header_split[1], "\n", new_header_split[2])
150 } else {
151 new_header <- new_header_split[1]
152 }
Hao Zhu3fc0e882018-04-03 16:06:41 -0400153 out <- str_replace(solve_enc(kable_input),
Hao Zhub2b41992017-10-03 12:50:03 -0400154 hline_type,
155 paste0(hline_type, "\n", new_header))
Hao Zhuc1f38412017-02-23 12:13:48 -0500156 out <- structure(out, format = "latex", class = "knitr_kable")
Hao Zhu2ce42b92017-06-15 17:15:33 -0400157 # new_header_row <- latex_contents_escape(new_header_split[1])
158 if (is.null(table_info$new_header_row)) {
159 table_info$new_header_row <- new_header_split[1]
160 table_info$header_df <- list(header)
161 } else {
162 table_info$new_header_row <- c(table_info$new_header_row, new_header_split[1])
163 table_info$header_df[[length(table_info$header_df) + 1]] <- header
164 }
Hao Zhu32f43f72017-06-20 18:24:54 -0400165 attr(out, "kable_meta") <- table_info
Hao Zhuc1f38412017-02-23 12:13:48 -0500166 return(out)
167}
168
Hao Zhu32f43f72017-06-20 18:24:54 -0400169pdfTable_new_header_generator <- function(header_df, booktabs = FALSE,
Hao Zhu3465b502018-04-02 22:41:46 -0400170 bold, italic, monospace, align) {
Hao Zhuc1f38412017-02-23 12:13:48 -0500171 if (booktabs) {
Hao Zhu3465b502018-04-02 22:41:46 -0400172 header_df$align <- align
Hao Zhuc1f38412017-02-23 12:13:48 -0500173 } else {
Hao Zhu3465b502018-04-02 22:41:46 -0400174 header_df$align <- paste0("|", align, "|")
175 header_df$align[1] <- paste0(align, "|")
176 header_df$align[nrow(header_df)] <- paste0("|", align)
Hao Zhuc1f38412017-02-23 12:13:48 -0500177 }
178 header_items <- apply(header_df, 1, function(x) {
179 # if(x[2] == 1) return(x[1])
Hao Zhu32f43f72017-06-20 18:24:54 -0400180 paste0('\\\\multicolumn{', x[2], '}{', x[3], '}{',
181 ifelse(bold, "\\\\bfseries ", ""),
182 ifelse(italic, "\\\\em ", ""),
Hao Zhuac7e70f2017-08-02 00:18:36 -0400183 ifelse(monospace, "\\\\ttfamily ", ""),
184 x[1],
185 "}")
Hao Zhuc1f38412017-02-23 12:13:48 -0500186 })
187 header_text <- paste(paste(header_items, collapse = " & "), "\\\\\\\\")
Hao Zhu2ce42b92017-06-15 17:15:33 -0400188 cline <- cline_gen(header_df, booktabs)
189 return(c(header_text, cline))
190}
191
192cline_gen <- function(header_df, booktabs) {
Hao Zhuc1f38412017-02-23 12:13:48 -0500193 cline_end <- cumsum(header_df$colspan)
194 cline_start <- c(0, cline_end) + 1
195 cline_start <- cline_start[-length(cline_start)]
Hao Zhuc05e1812017-02-25 01:45:35 -0500196 cline_type <- switch(booktabs + 1,
197 "\\\\cline{",
198 "\\\\cmidrule(l{2pt}r{2pt}){")
Hao Zhuc1f38412017-02-23 12:13:48 -0500199 cline <- paste0(cline_type, cline_start, "-", cline_end, "}")
200 cline <- cline[trimws(header_df$header) != ""]
201 cline <- paste(cline, collapse = " ")
Hao Zhu2ce42b92017-06-15 17:15:33 -0400202 return(cline)
Hao Zhuc1f38412017-02-23 12:13:48 -0500203}
Hao Zhu2ce42b92017-06-15 17:15:33 -0400204
205