blob: 95e587db151deb4b766d386e9a913368a1f5d1f9 [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()`
5#' function and adds an header row on top of it. This function can work with
6#' both `HTML` and `LaTeX` outputs
7#'
8#' @param kable_input Output of `knitr::kable()` with `format` specified
9#' @param header A (named) character vector with `colspan` as values. For
10#' example, `c(" " = 1, "title" = 2)` can be used to create a new header row
11#' for a 3-column table with "title" spanning across column 2 and 3. For
12#' convenience, when `colspan` equals to 1, users can drop the ` = 1` part.
13#' As a result, `c(" ", "title" = 2)` is the same as `c(" " = 1, "title" = 2)`.
Hao Zhu32f43f72017-06-20 18:24:54 -040014#' @param bold A T/F value to control whether the text should be bolded.
15#' @param italic A T/F value to control whether the text should to be emphasized.
Hao Zhuac7e70f2017-08-02 00:18:36 -040016#' @param monospace A T/F value to control whether the text of the selected column
17#' need to be monospaced (verbatim)
18#' @param escape A T/F value showing whether special characters should be
19#' escaped.
Hao Zhuf7994dd2017-02-27 16:58:42 -050020#'
Hao Zhu78e61222017-05-24 20:53:35 -040021#' @examples x <- knitr::kable(head(mtcars), "html")
22#' # Add a row of header with 3 columns on the top of the table. The column
23#' # span for the 2nd and 3rd one are 5 & 6.
24#' add_header_above(x, c(" ", "Group 1" = 5, "Group 2" = 6))
25#'
Hao Zhuc1f38412017-02-23 12:13:48 -050026#' @export
Hao Zhuac7e70f2017-08-02 00:18:36 -040027add_header_above <- function(kable_input, header = NULL,
28 bold = FALSE, italic = FALSE,
29 monospace = FALSE, escape = TRUE) {
Hao Zhuc1f38412017-02-23 12:13:48 -050030 kable_format <- attr(kable_input, "format")
31 if (!kable_format %in% c("html", "latex")) {
32 stop("Please specify output format in your kable function. Currently ",
33 "generic markdown table using pandoc is not supported.")
34 }
35 if (kable_format == "html") {
Hao Zhuac7e70f2017-08-02 00:18:36 -040036 return(htmlTable_add_header_above(kable_input, header,
37 bold, italic, monospace, escape))
Hao Zhuc1f38412017-02-23 12:13:48 -050038 }
39 if (kable_format == "latex") {
Hao Zhuac7e70f2017-08-02 00:18:36 -040040 return(pdfTable_add_header_above(kable_input, header,
41 bold, italic, monospace, escape))
Hao Zhuc1f38412017-02-23 12:13:48 -050042 }
43}
44
45# HTML
Hao Zhuac7e70f2017-08-02 00:18:36 -040046htmlTable_add_header_above <- function(kable_input, header,
47 bold, italic, monospace, escape) {
Hao Zhuc1f38412017-02-23 12:13:48 -050048 if (is.null(header)) return(kable_input)
Hao Zhu909ea382017-06-12 15:43:47 -040049 kable_attrs <- attributes(kable_input)
Hao Zhu558c72f2017-07-24 15:12:00 -040050 kable_xml <- read_kable_as_xml(kable_input)
Hao Zhu62cdde52017-05-20 22:16:03 -040051 kable_xml_thead <- xml_tpart(kable_xml, "thead")
Hao Zhuc1f38412017-02-23 12:13:48 -050052
53 header <- standardize_header_input(header)
54
Hao Zhuac7e70f2017-08-02 00:18:36 -040055 if (escape) {
56 header$header <- escape_html(header$header)
57 }
58
Hao Zhuc1f38412017-02-23 12:13:48 -050059 header_rows <- xml_children(kable_xml_thead)
60 bottom_header_row <- header_rows[[length(header_rows)]]
61 kable_ncol <- length(xml_children(bottom_header_row))
62 if (sum(header$colspan) != kable_ncol) {
63 stop("The new header row you provided has a different total number of ",
64 "columns with the original kable output.")
65 }
66
Hao Zhuac7e70f2017-08-02 00:18:36 -040067 new_header_row <- htmlTable_new_header_generator(header,
68 bold, italic, monospace)
Hao Zhuc1f38412017-02-23 12:13:48 -050069 xml_add_child(kable_xml_thead, new_header_row, .where = 0)
Hao Zhuf2dfd142017-07-24 14:43:28 -040070 out <- as_kable_xml(kable_xml)
Hao Zhu909ea382017-06-12 15:43:47 -040071 attributes(out) <- kable_attrs
Hao Zhu6a076462017-03-01 12:59:01 -050072 return(out)
Hao Zhuc1f38412017-02-23 12:13:48 -050073}
74
75standardize_header_input <- function(header) {
76 header_names <- names(header)
77
78 if (is.null(header_names)) {
79 return(data.frame(header = header, colspan = 1, row.names = NULL))
80 }
81
82 names(header)[header_names == ""] <- header[header_names == ""]
83 header[header_names == ""] <- 1
84 header_names <- names(header)
85 header <- as.numeric(header)
86 names(header) <- header_names
87 return(data.frame(header = names(header), colspan = header, row.names = NULL))
88}
89
Hao Zhuac7e70f2017-08-02 00:18:36 -040090htmlTable_new_header_generator <- function(header_df, bold, italic, monospace) {
Hao Zhu32f43f72017-06-20 18:24:54 -040091 row_style <- paste0(
92 ifelse(bold, "font-weight: bold; ", ""),
Hao Zhuac7e70f2017-08-02 00:18:36 -040093 ifelse(italic, "font-style: italic; ", ""),
94 ifelse(monospace, "font-family: monospace; ", "")
Hao Zhu32f43f72017-06-20 18:24:54 -040095 )
Hao Zhuc1f38412017-02-23 12:13:48 -050096 header_items <- apply(header_df, 1, function(x) {
Hao Zhuacc7ceb2017-05-26 10:50:25 -070097 if (trimws(x[1]) == "") {
Hao Zhu6d2faa12017-05-24 02:16:45 -040098 paste0('<th style="border-bottom:hidden"></th>')
99 } else {
Hao Zhuacc7ceb2017-05-26 10:50:25 -0700100 paste0('<th style="text-align:center; border-bottom:hidden; ',
Hao Zhu32f43f72017-06-20 18:24:54 -0400101 'padding-bottom:0; padding-left:3px;padding-right:3px;',
102 row_style,
103 '" colspan="',
Hao Zhu4b0c51e2017-08-01 15:21:07 -0400104 x[2], '"><div style="border-bottom: 1px solid #ddd; padding-bottom: 5px;">',
Hao Zhuacc7ceb2017-05-26 10:50:25 -0700105 x[1], '</div></th>')
Hao Zhu6d2faa12017-05-24 02:16:45 -0400106 }
Hao Zhuc1f38412017-02-23 12:13:48 -0500107 })
108 header_text <- paste(c("<tr>", header_items, "</tr>"), collapse = "")
109 header_xml <- read_xml(header_text, options = c("COMPACT"))
110 return(header_xml)
111}
112
113# Add an extra header row above the current header in a LaTeX table ------
Hao Zhuac7e70f2017-08-02 00:18:36 -0400114pdfTable_add_header_above <- function(kable_input, header,
115 bold, italic, monospace, escape) {
Hao Zhuc1f38412017-02-23 12:13:48 -0500116 table_info <- magic_mirror(kable_input)
117 header <- standardize_header_input(header)
Hao Zhuac7e70f2017-08-02 00:18:36 -0400118 if (escape) {
119 header$header <- escape_latex(header$header)
120 header$header <- gsub("\\\\", "\\\\\\\\", header$header)
121 }
Hao Zhuc1f38412017-02-23 12:13:48 -0500122 hline_type <- switch(table_info$booktabs + 1, "\\\\hline", "\\\\toprule")
Hao Zhu32f43f72017-06-20 18:24:54 -0400123 new_header_split <- pdfTable_new_header_generator(header, table_info$booktabs,
Hao Zhuac7e70f2017-08-02 00:18:36 -0400124 bold, italic, monospace)
Hao Zhu2ce42b92017-06-15 17:15:33 -0400125 new_header <- paste0(new_header_split[1], "\n", new_header_split[2])
Hao Zhuc1f38412017-02-23 12:13:48 -0500126 out <- sub(hline_type,
Hao Zhu2ce42b92017-06-15 17:15:33 -0400127 paste0(hline_type, "\n", new_header),
Hao Zhuc1f38412017-02-23 12:13:48 -0500128 as.character(kable_input))
129 out <- structure(out, format = "latex", class = "knitr_kable")
Hao Zhu2ce42b92017-06-15 17:15:33 -0400130 # new_header_row <- latex_contents_escape(new_header_split[1])
131 if (is.null(table_info$new_header_row)) {
132 table_info$new_header_row <- new_header_split[1]
133 table_info$header_df <- list(header)
134 } else {
135 table_info$new_header_row <- c(table_info$new_header_row, new_header_split[1])
136 table_info$header_df[[length(table_info$header_df) + 1]] <- header
137 }
Hao Zhu32f43f72017-06-20 18:24:54 -0400138 attr(out, "kable_meta") <- table_info
Hao Zhuc1f38412017-02-23 12:13:48 -0500139 return(out)
140}
141
Hao Zhu32f43f72017-06-20 18:24:54 -0400142pdfTable_new_header_generator <- function(header_df, booktabs = FALSE,
Hao Zhuac7e70f2017-08-02 00:18:36 -0400143 bold, italic, monospace) {
Hao Zhuc1f38412017-02-23 12:13:48 -0500144 if (booktabs) {
145 header_df$align <- "c"
146 } else {
147 header_df$align <- "|c|"
148 header_df$align[1] <- "c|"
149 header_df$align[nrow(header_df)] <- "|c"
150 }
151 header_items <- apply(header_df, 1, function(x) {
152 # if(x[2] == 1) return(x[1])
Hao Zhu32f43f72017-06-20 18:24:54 -0400153 paste0('\\\\multicolumn{', x[2], '}{', x[3], '}{',
154 ifelse(bold, "\\\\bfseries ", ""),
155 ifelse(italic, "\\\\em ", ""),
Hao Zhuac7e70f2017-08-02 00:18:36 -0400156 ifelse(monospace, "\\\\ttfamily ", ""),
157 x[1],
158 "}")
Hao Zhuc1f38412017-02-23 12:13:48 -0500159 })
160 header_text <- paste(paste(header_items, collapse = " & "), "\\\\\\\\")
Hao Zhu2ce42b92017-06-15 17:15:33 -0400161 cline <- cline_gen(header_df, booktabs)
162 return(c(header_text, cline))
163}
164
165cline_gen <- function(header_df, booktabs) {
Hao Zhuc1f38412017-02-23 12:13:48 -0500166 cline_end <- cumsum(header_df$colspan)
167 cline_start <- c(0, cline_end) + 1
168 cline_start <- cline_start[-length(cline_start)]
Hao Zhuc05e1812017-02-25 01:45:35 -0500169 cline_type <- switch(booktabs + 1,
170 "\\\\cline{",
171 "\\\\cmidrule(l{2pt}r{2pt}){")
Hao Zhuc1f38412017-02-23 12:13:48 -0500172 cline <- paste0(cline_type, cline_start, "-", cline_end, "}")
173 cline <- cline[trimws(header_df$header) != ""]
174 cline <- paste(cline, collapse = " ")
Hao Zhu2ce42b92017-06-15 17:15:33 -0400175 return(cline)
Hao Zhuc1f38412017-02-23 12:13:48 -0500176}
Hao Zhu2ce42b92017-06-15 17:15:33 -0400177
178