Hao Zhu | 62cdde5 | 2017-05-20 22:16:03 -0400 | [diff] [blame] | 1 | #' Put a few rows of a table into one category |
| 2 | #' |
Hao Zhu | bd95bb2 | 2017-05-22 16:08:49 -0400 | [diff] [blame] | 3 | #' @description Group a few rows in a table together under a label. |
| 4 | #' |
| 5 | #' @param kable_input Output of `knitr::kable()` with `format` specified |
| 6 | #' @param group_label A character string for the name of the group |
| 7 | #' @param start_row A numeric value that tells the function in which row the |
| 8 | #' group starts. Note that the counting excludes header rows and other group |
| 9 | #' labeling rows |
| 10 | #' @param end_row A numeric value that tells the function in which row the group |
| 11 | #' ends. |
Hao Zhu | 49483bf | 2017-09-12 11:21:00 -0400 | [diff] [blame] | 12 | #' @param index A named vector providing the index for robust row-grouping tasks. |
| 13 | #' Basically, you can use it in the same way as `add_header_above()`. |
Hao Zhu | bd95bb2 | 2017-05-22 16:08:49 -0400 | [diff] [blame] | 14 | #' @param label_row_css A character string for any customized css used for the |
| 15 | #' labeling row. By default, the labeling row will have a solid black line |
| 16 | #' underneath. Only useful for HTML documents. |
| 17 | #' @param latex_gap_space A character value telling LaTeX how large the gap |
| 18 | #' between the previous row and the group labeling row. Only useful for LaTeX |
| 19 | #' documents. |
Hao Zhu | ac7e70f | 2017-08-02 00:18:36 -0400 | [diff] [blame] | 20 | #' @param escape A T/F value showing whether special characters should be |
| 21 | #' escaped. |
Hao Zhu | bd95bb2 | 2017-05-22 16:08:49 -0400 | [diff] [blame] | 22 | #' |
Hao Zhu | 78e6122 | 2017-05-24 20:53:35 -0400 | [diff] [blame] | 23 | #' @examples x <- knitr::kable(head(mtcars), "html") |
| 24 | #' # Put Row 2 to Row 5 into a Group and label it as "Group A" |
| 25 | #' group_rows(x, "Group A", 2, 5) |
| 26 | #' |
Hao Zhu | 62cdde5 | 2017-05-20 22:16:03 -0400 | [diff] [blame] | 27 | #' @export |
Hao Zhu | 49483bf | 2017-09-12 11:21:00 -0400 | [diff] [blame] | 28 | group_rows <- function(kable_input, group_label = NULL, |
| 29 | start_row = NULL, end_row = NULL, |
| 30 | index = NULL, |
Hao Zhu | d972e7f | 2017-05-22 13:27:15 -0400 | [diff] [blame] | 31 | label_row_css = "border-bottom: 1px solid;", |
Hao Zhu | 49483bf | 2017-09-12 11:21:00 -0400 | [diff] [blame] | 32 | latex_gap_space = "0.3em", |
Hao Zhu | ac7e70f | 2017-08-02 00:18:36 -0400 | [diff] [blame] | 33 | escape = TRUE) { |
Hao Zhu | 49483bf | 2017-09-12 11:21:00 -0400 | [diff] [blame] | 34 | |
Hao Zhu | 62cdde5 | 2017-05-20 22:16:03 -0400 | [diff] [blame] | 35 | kable_format <- attr(kable_input, "format") |
| 36 | if (!kable_format %in% c("html", "latex")) { |
| 37 | message("Currently generic markdown table using pandoc is not supported.") |
| 38 | return(kable_input) |
| 39 | } |
Hao Zhu | 49483bf | 2017-09-12 11:21:00 -0400 | [diff] [blame] | 40 | if (is.null(index)) { |
| 41 | if (kable_format == "html") { |
| 42 | return(group_rows_html(kable_input, group_label, start_row, end_row, |
| 43 | label_row_css, escape)) |
| 44 | } |
| 45 | if (kable_format == "latex") { |
| 46 | return(group_rows_latex(kable_input, group_label, start_row, end_row, |
| 47 | latex_gap_space, escape)) |
| 48 | } |
| 49 | } else { |
| 50 | index <- group_row_index_translator(index) |
| 51 | out <- kable_input |
| 52 | if (kable_format == "html") { |
| 53 | for (i in 1:nrow(index)) { |
| 54 | out <- group_rows_html(out, index$header[i], |
| 55 | index$start[i], index$end[i], |
| 56 | label_row_css, escape) |
| 57 | } |
| 58 | } |
| 59 | if (kable_format == "latex") { |
| 60 | for (i in 1:nrow(index)) { |
| 61 | out <- group_rows_latex(out, index$header[i], |
| 62 | index$start[i], index$end[i], |
| 63 | latex_gap_space, escape) |
| 64 | } |
| 65 | } |
| 66 | return(out) |
Hao Zhu | 62cdde5 | 2017-05-20 22:16:03 -0400 | [diff] [blame] | 67 | } |
Hao Zhu | 49483bf | 2017-09-12 11:21:00 -0400 | [diff] [blame] | 68 | } |
| 69 | |
| 70 | group_row_index_translator <- function(index) { |
| 71 | index <- standardize_header_input(index) |
| 72 | index$start <- cumsum(c(1, index$colspan))[1:length(index$colspan)] |
| 73 | index$end <- cumsum(index$colspan) |
| 74 | index$header <- trimws(index$header) |
| 75 | index <- index[index$header != "", ] |
| 76 | return(index) |
Hao Zhu | 62cdde5 | 2017-05-20 22:16:03 -0400 | [diff] [blame] | 77 | } |
| 78 | |
Hao Zhu | d972e7f | 2017-05-22 13:27:15 -0400 | [diff] [blame] | 79 | group_rows_html <- function(kable_input, group_label, start_row, end_row, |
Hao Zhu | ac7e70f | 2017-08-02 00:18:36 -0400 | [diff] [blame] | 80 | label_row_css, escape) { |
Hao Zhu | 62cdde5 | 2017-05-20 22:16:03 -0400 | [diff] [blame] | 81 | kable_attrs <- attributes(kable_input) |
Hao Zhu | 558c72f | 2017-07-24 15:12:00 -0400 | [diff] [blame] | 82 | kable_xml <- read_kable_as_xml(kable_input) |
Hao Zhu | 62cdde5 | 2017-05-20 22:16:03 -0400 | [diff] [blame] | 83 | kable_tbody <- xml_tpart(kable_xml, "tbody") |
| 84 | |
Hao Zhu | ac7e70f | 2017-08-02 00:18:36 -0400 | [diff] [blame] | 85 | if (escape) { |
| 86 | group_label <- escape_html(group_label) |
| 87 | } |
| 88 | |
Hao Zhu | 62cdde5 | 2017-05-20 22:16:03 -0400 | [diff] [blame] | 89 | group_header_rows <- attr(kable_input, "group_header_rows") |
| 90 | group_seq <- seq(start_row, end_row) |
| 91 | if (!is.null(group_header_rows)) { |
| 92 | group_seq <- positions_corrector(group_seq, group_header_rows, |
| 93 | length(xml_children(kable_tbody))) |
| 94 | } |
| 95 | |
| 96 | # Insert a group header row |
| 97 | starting_node <- xml_child(kable_tbody, group_seq[1]) |
| 98 | kable_ncol <- length(xml_children(starting_node)) |
| 99 | group_header_row_text <- paste0( |
Hao Zhu | d972e7f | 2017-05-22 13:27:15 -0400 | [diff] [blame] | 100 | '<tr groupLength="', length(group_seq), '"><td colspan="', kable_ncol, |
| 101 | '" style="', label_row_css, '"><strong>', group_label, |
| 102 | "</strong></td></tr>" |
Hao Zhu | 62cdde5 | 2017-05-20 22:16:03 -0400 | [diff] [blame] | 103 | ) |
| 104 | group_header_row <- read_xml(group_header_row_text, options = "COMPACT") |
| 105 | xml_add_sibling(starting_node, group_header_row, .where = "before") |
| 106 | |
| 107 | # add indentations to items |
Hao Zhu | f2dfd14 | 2017-07-24 14:43:28 -0400 | [diff] [blame] | 108 | out <- as_kable_xml(kable_xml) |
Hao Zhu | 62cdde5 | 2017-05-20 22:16:03 -0400 | [diff] [blame] | 109 | attributes(out) <- kable_attrs |
| 110 | attr(out, "group_header_rows") <- c(attr(out, "group_header_rows"), group_seq[1]) |
Hao Zhu | 49483bf | 2017-09-12 11:21:00 -0400 | [diff] [blame] | 111 | out <- add_indent_html(out, positions = seq(start_row, end_row)) |
Hao Zhu | 62cdde5 | 2017-05-20 22:16:03 -0400 | [diff] [blame] | 112 | return(out) |
| 113 | } |
Hao Zhu | d972e7f | 2017-05-22 13:27:15 -0400 | [diff] [blame] | 114 | |
Hao Zhu | fc14c9b | 2017-05-22 14:03:22 -0400 | [diff] [blame] | 115 | group_rows_latex <- function(kable_input, group_label, start_row, end_row, |
Hao Zhu | ac7e70f | 2017-08-02 00:18:36 -0400 | [diff] [blame] | 116 | gap_space, escape) { |
Hao Zhu | d972e7f | 2017-05-22 13:27:15 -0400 | [diff] [blame] | 117 | table_info <- magic_mirror(kable_input) |
Hao Zhu | d2c0f73 | 2017-08-26 10:40:14 -0400 | [diff] [blame] | 118 | out <- enc2utf8(as.character(kable_input)) |
Hao Zhu | d972e7f | 2017-05-22 13:27:15 -0400 | [diff] [blame] | 119 | |
Hao Zhu | 064990d | 2017-10-17 18:08:42 -0400 | [diff] [blame] | 120 | if (table_info$duplicated_rows) { |
| 121 | dup_fx_out <- fix_duplicated_rows_latex(out, table_info) |
| 122 | out <- dup_fx_out[[1]] |
| 123 | table_info <- dup_fx_out[[2]] |
| 124 | } |
| 125 | |
Hao Zhu | ac7e70f | 2017-08-02 00:18:36 -0400 | [diff] [blame] | 126 | if (escape) { |
| 127 | group_label <- escape_latex(group_label) |
| 128 | group_label <- gsub("\\\\", "\\\\\\\\", group_label) |
| 129 | } |
| 130 | |
Hao Zhu | d972e7f | 2017-05-22 13:27:15 -0400 | [diff] [blame] | 131 | # Add group label |
| 132 | rowtext <- table_info$contents[start_row + 1] |
| 133 | if (table_info$booktabs) { |
| 134 | new_rowtext <- paste0( |
| 135 | "\\\\addlinespace[", gap_space, "]\n", |
| 136 | "\\\\multicolumn{", table_info$ncol, "}{l}{\\\\textbf{", group_label, |
| 137 | "}}\\\\\\\\\n", |
| 138 | rowtext |
| 139 | ) |
Hao Zhu | d972e7f | 2017-05-22 13:27:15 -0400 | [diff] [blame] | 140 | } else { |
| 141 | rowtext <- paste0("\\\\hline\n", rowtext) |
| 142 | new_rowtext <- paste0( |
| 143 | "\\\\hline\n\\\\multicolumn{", table_info$ncol, "}{l}{\\\\textbf{", |
| 144 | group_label, "}}\\\\\\\\\n", rowtext |
| 145 | ) |
| 146 | } |
| 147 | out <- sub(rowtext, new_rowtext, out) |
Hao Zhu | 8f20299 | 2017-07-15 02:20:18 -0400 | [diff] [blame] | 148 | out <- gsub("\\\\addlinespace\n", "", out) |
Hao Zhu | d2c0f73 | 2017-08-26 10:40:14 -0400 | [diff] [blame] | 149 | out <- structure(out, format = "latex", class = "knitr_kable") |
Hao Zhu | 32f43f7 | 2017-06-20 18:24:54 -0400 | [diff] [blame] | 150 | table_info$group_rows_used <- TRUE |
| 151 | attr(out, "kable_meta") <- table_info |
Hao Zhu | 49483bf | 2017-09-12 11:21:00 -0400 | [diff] [blame] | 152 | out <- add_indent_latex(out, seq(start_row, end_row)) |
Hao Zhu | d972e7f | 2017-05-22 13:27:15 -0400 | [diff] [blame] | 153 | return(out) |
| 154 | } |