blob: f5d857e614a2f11fa0809e1e265a0466088b049b [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.
Salzer6bc84f82018-02-11 13:18:01 -050019#' @param line A T/F value to control whether a line will appear underneath the
20#' header
Hao Zhuf7994dd2017-02-27 16:58:42 -050021#'
Hao Zhu78e61222017-05-24 20:53:35 -040022#' @examples x <- knitr::kable(head(mtcars), "html")
23#' # Add a row of header with 3 columns on the top of the table. The column
24#' # span for the 2nd and 3rd one are 5 & 6.
25#' add_header_above(x, c(" ", "Group 1" = 5, "Group 2" = 6))
26#'
Hao Zhuc1f38412017-02-23 12:13:48 -050027#' @export
Hao Zhuac7e70f2017-08-02 00:18:36 -040028add_header_above <- function(kable_input, header = NULL,
29 bold = FALSE, italic = FALSE,
Salzer6bc84f82018-02-11 13:18:01 -050030 monospace = FALSE, escape = TRUE,line = TRUE) {
Hao Zhuc1f38412017-02-23 12:13:48 -050031 kable_format <- attr(kable_input, "format")
32 if (!kable_format %in% c("html", "latex")) {
Hao Zhu401ebd82018-01-14 17:10:20 -050033 warning("Please specify format in kable. kableExtra can customize either ",
34 "HTML or LaTeX outputs. See https://haozhu233.github.io/kableExtra/ ",
35 "for details.")
36 return(kable_input)
Hao Zhuc1f38412017-02-23 12:13:48 -050037 }
38 if (kable_format == "html") {
Hao Zhuac7e70f2017-08-02 00:18:36 -040039 return(htmlTable_add_header_above(kable_input, header,
Salzer6bc84f82018-02-11 13:18:01 -050040 bold, italic, monospace, escape,line))
Hao Zhuc1f38412017-02-23 12:13:48 -050041 }
42 if (kable_format == "latex") {
Hao Zhuac7e70f2017-08-02 00:18:36 -040043 return(pdfTable_add_header_above(kable_input, header,
Salzer6bc84f82018-02-11 13:18:01 -050044 bold, italic, monospace, escape,line))
Hao Zhuc1f38412017-02-23 12:13:48 -050045 }
46}
47
48# HTML
Hao Zhuac7e70f2017-08-02 00:18:36 -040049htmlTable_add_header_above <- function(kable_input, header,
Salzer6bc84f82018-02-11 13:18:01 -050050 bold, italic, monospace, escape,line) {
Hao Zhuc1f38412017-02-23 12:13:48 -050051 if (is.null(header)) return(kable_input)
Hao Zhu909ea382017-06-12 15:43:47 -040052 kable_attrs <- attributes(kable_input)
Hao Zhu558c72f2017-07-24 15:12:00 -040053 kable_xml <- read_kable_as_xml(kable_input)
Hao Zhu62cdde52017-05-20 22:16:03 -040054 kable_xml_thead <- xml_tpart(kable_xml, "thead")
Hao Zhuc1f38412017-02-23 12:13:48 -050055
56 header <- standardize_header_input(header)
57
Hao Zhuac7e70f2017-08-02 00:18:36 -040058 if (escape) {
59 header$header <- escape_html(header$header)
60 }
61
Hao Zhuc1f38412017-02-23 12:13:48 -050062 header_rows <- xml_children(kable_xml_thead)
63 bottom_header_row <- header_rows[[length(header_rows)]]
64 kable_ncol <- length(xml_children(bottom_header_row))
65 if (sum(header$colspan) != kable_ncol) {
66 stop("The new header row you provided has a different total number of ",
67 "columns with the original kable output.")
68 }
69
Hao Zhuac7e70f2017-08-02 00:18:36 -040070 new_header_row <- htmlTable_new_header_generator(header,
Salzer6bc84f82018-02-11 13:18:01 -050071 bold, italic, monospace,line)
Hao Zhuc1f38412017-02-23 12:13:48 -050072 xml_add_child(kable_xml_thead, new_header_row, .where = 0)
Hao Zhuf2dfd142017-07-24 14:43:28 -040073 out <- as_kable_xml(kable_xml)
Hao Zhu23456762018-03-26 12:30:10 -040074 if (is.null(kable_attrs$header_above)) {
75 kable_attrs$header_above <- 1
76 } else {
77 kable_attrs$header_above <- kable_attrs$header_above + 1
78 }
Hao Zhu909ea382017-06-12 15:43:47 -040079 attributes(out) <- kable_attrs
Hao Zhuf2100832018-01-11 16:20:29 -050080 if (!"kableExtra" %in% class(out)) class(out) <- c("kableExtra", class(out))
Hao Zhu6a076462017-03-01 12:59:01 -050081 return(out)
Hao Zhuc1f38412017-02-23 12:13:48 -050082}
83
84standardize_header_input <- function(header) {
85 header_names <- names(header)
86
87 if (is.null(header_names)) {
88 return(data.frame(header = header, colspan = 1, row.names = NULL))
89 }
90
91 names(header)[header_names == ""] <- header[header_names == ""]
92 header[header_names == ""] <- 1
93 header_names <- names(header)
94 header <- as.numeric(header)
95 names(header) <- header_names
96 return(data.frame(header = names(header), colspan = header, row.names = NULL))
97}
98
Salzer6bc84f82018-02-11 13:18:01 -050099htmlTable_new_header_generator <- function(header_df, bold, italic, monospace,line) {
Hao Zhu32f43f72017-06-20 18:24:54 -0400100 row_style <- paste0(
101 ifelse(bold, "font-weight: bold; ", ""),
Hao Zhuac7e70f2017-08-02 00:18:36 -0400102 ifelse(italic, "font-style: italic; ", ""),
103 ifelse(monospace, "font-family: monospace; ", "")
Hao Zhu32f43f72017-06-20 18:24:54 -0400104 )
Hao Zhuc1f38412017-02-23 12:13:48 -0500105 header_items <- apply(header_df, 1, function(x) {
Hao Zhuacc7ceb2017-05-26 10:50:25 -0700106 if (trimws(x[1]) == "") {
Hao Zhu7f7293e2017-10-27 11:36:18 -0400107 paste0('<th style="border-bottom:hidden" colspan="', x[2], '"></th>')
Hao Zhu6d2faa12017-05-24 02:16:45 -0400108 } else {
Hao Zhuacc7ceb2017-05-26 10:50:25 -0700109 paste0('<th style="text-align:center; border-bottom:hidden; ',
Hao Zhu32f43f72017-06-20 18:24:54 -0400110 'padding-bottom:0; padding-left:3px;padding-right:3px;',
111 row_style,
112 '" colspan="',
Salzer6bc84f82018-02-11 13:18:01 -0500113 x[2], '"><div style="',
114 ifelse(line,'border-bottom: 1px solid #ddd; padding-bottom: 5px;">','">'),
Hao Zhuacc7ceb2017-05-26 10:50:25 -0700115 x[1], '</div></th>')
Hao Zhu6d2faa12017-05-24 02:16:45 -0400116 }
Hao Zhuc1f38412017-02-23 12:13:48 -0500117 })
118 header_text <- paste(c("<tr>", header_items, "</tr>"), collapse = "")
119 header_xml <- read_xml(header_text, options = c("COMPACT"))
120 return(header_xml)
121}
122
123# Add an extra header row above the current header in a LaTeX table ------
Hao Zhuac7e70f2017-08-02 00:18:36 -0400124pdfTable_add_header_above <- function(kable_input, header,
Salzer6bc84f82018-02-11 13:18:01 -0500125 bold, italic, monospace, escape, line) {
Hao Zhuc1f38412017-02-23 12:13:48 -0500126 table_info <- magic_mirror(kable_input)
127 header <- standardize_header_input(header)
Hao Zhu248bbef2018-04-02 18:25:14 -0400128
Hao Zhuac7e70f2017-08-02 00:18:36 -0400129 if (escape) {
Hao Zhuc7865132018-04-02 13:47:39 -0400130 header$header <- escape_latex2(header$header)
Hao Zhu248bbef2018-04-02 18:25:14 -0400131 header$header <- linebreak(header$header, align = "c", double_escape = TRUE)
Hao Zhuac7e70f2017-08-02 00:18:36 -0400132 }
Hao Zhu248bbef2018-04-02 18:25:14 -0400133
134
Hao Zhuc1f38412017-02-23 12:13:48 -0500135 hline_type <- switch(table_info$booktabs + 1, "\\\\hline", "\\\\toprule")
Hao Zhu32f43f72017-06-20 18:24:54 -0400136 new_header_split <- pdfTable_new_header_generator(header, table_info$booktabs,
Hao Zhuac7e70f2017-08-02 00:18:36 -0400137 bold, italic, monospace)
Salzer6bc84f82018-02-11 13:18:01 -0500138 if(line){
139 new_header <- paste0(new_header_split[1], "\n", new_header_split[2])
140 } else {
141 new_header <- new_header_split[1]
142 }
Hao Zhub2b41992017-10-03 12:50:03 -0400143 out <- str_replace(enc2utf8(as.character(kable_input)),
144 hline_type,
145 paste0(hline_type, "\n", new_header))
Hao Zhuc1f38412017-02-23 12:13:48 -0500146 out <- structure(out, format = "latex", class = "knitr_kable")
Hao Zhu2ce42b92017-06-15 17:15:33 -0400147 # new_header_row <- latex_contents_escape(new_header_split[1])
148 if (is.null(table_info$new_header_row)) {
149 table_info$new_header_row <- new_header_split[1]
150 table_info$header_df <- list(header)
151 } else {
152 table_info$new_header_row <- c(table_info$new_header_row, new_header_split[1])
153 table_info$header_df[[length(table_info$header_df) + 1]] <- header
154 }
Hao Zhu32f43f72017-06-20 18:24:54 -0400155 attr(out, "kable_meta") <- table_info
Hao Zhuc1f38412017-02-23 12:13:48 -0500156 return(out)
157}
158
Hao Zhu32f43f72017-06-20 18:24:54 -0400159pdfTable_new_header_generator <- function(header_df, booktabs = FALSE,
Hao Zhuac7e70f2017-08-02 00:18:36 -0400160 bold, italic, monospace) {
Hao Zhuc1f38412017-02-23 12:13:48 -0500161 if (booktabs) {
162 header_df$align <- "c"
163 } else {
164 header_df$align <- "|c|"
165 header_df$align[1] <- "c|"
166 header_df$align[nrow(header_df)] <- "|c"
167 }
168 header_items <- apply(header_df, 1, function(x) {
169 # if(x[2] == 1) return(x[1])
Hao Zhu32f43f72017-06-20 18:24:54 -0400170 paste0('\\\\multicolumn{', x[2], '}{', x[3], '}{',
171 ifelse(bold, "\\\\bfseries ", ""),
172 ifelse(italic, "\\\\em ", ""),
Hao Zhuac7e70f2017-08-02 00:18:36 -0400173 ifelse(monospace, "\\\\ttfamily ", ""),
174 x[1],
175 "}")
Hao Zhuc1f38412017-02-23 12:13:48 -0500176 })
177 header_text <- paste(paste(header_items, collapse = " & "), "\\\\\\\\")
Hao Zhu2ce42b92017-06-15 17:15:33 -0400178 cline <- cline_gen(header_df, booktabs)
179 return(c(header_text, cline))
180}
181
182cline_gen <- function(header_df, booktabs) {
Hao Zhuc1f38412017-02-23 12:13:48 -0500183 cline_end <- cumsum(header_df$colspan)
184 cline_start <- c(0, cline_end) + 1
185 cline_start <- cline_start[-length(cline_start)]
Hao Zhuc05e1812017-02-25 01:45:35 -0500186 cline_type <- switch(booktabs + 1,
187 "\\\\cline{",
188 "\\\\cmidrule(l{2pt}r{2pt}){")
Hao Zhuc1f38412017-02-23 12:13:48 -0500189 cline <- paste0(cline_type, cline_start, "-", cline_end, "}")
190 cline <- cline[trimws(header_df$header) != ""]
191 cline <- paste(cline, collapse = " ")
Hao Zhu2ce42b92017-06-15 17:15:33 -0400192 return(cline)
Hao Zhuc1f38412017-02-23 12:13:48 -0500193}
Hao Zhu2ce42b92017-06-15 17:15:33 -0400194
195