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. |
Salzer | 8f49eb6 | 2018-02-12 22:19:06 -0500 | [diff] [blame] | 22 | #' @param latex_align Adjust justification of group_label in latex only. Value should be "c" for |
Salzer | 1555085 | 2018-02-12 22:09:14 -0500 | [diff] [blame] | 23 | #' centered on row, "r" for right justification, or "l" for left justification. Default |
| 24 | #' Value is "l" If using html, the alignment can be set by using the label_row_css |
| 25 | #' parameter. |
bsalzer | 8593327 | 2018-02-12 17:26:46 -0500 | [diff] [blame] | 26 | #' @param colnum A numeric that determines how many columns the text should span. |
| 27 | #' The default setting will have the text span the entire length. |
georgegui | 4cc925b | 2018-03-01 12:02:45 -0600 | [diff] [blame] | 28 | #' @param bold A T/F value to control whether the text should be bolded. |
| 29 | #' @param italic A T/F value to control whether the text should to be emphasized. |
Brian Salzer | a3f43ad | 2018-03-04 15:03:20 -0500 | [diff] [blame] | 30 | #' @param hline_before A T/F value that addes a horizontal line before the group_row label. Default |
| 31 | #' value is False. |
georgegui | 4cc925b | 2018-03-01 12:02:45 -0600 | [diff] [blame] | 32 | #' @param hline_after A replicate of `hline.after` in xtable. It |
Hao Zhu | 6191e74 | 2018-03-01 13:09:08 -0500 | [diff] [blame] | 33 | #' addes a hline after the row |
georgegui | 4cc925b | 2018-03-01 12:02:45 -0600 | [diff] [blame] | 34 | #' @param extra_latex_after Extra LaTeX text to be added after the row. |
Hao Zhu | 2742ffc | 2018-10-17 11:23:44 -0400 | [diff] [blame] | 35 | #' @param indent A T?F value to control whether list items are indented. |
Hao Zhu | bd95bb2 | 2017-05-22 16:08:49 -0400 | [diff] [blame] | 36 | #' |
Hao Zhu | 78e6122 | 2017-05-24 20:53:35 -0400 | [diff] [blame] | 37 | #' @examples x <- knitr::kable(head(mtcars), "html") |
| 38 | #' # Put Row 2 to Row 5 into a Group and label it as "Group A" |
Hao Zhu | 72917f9 | 2019-03-15 18:41:42 -0400 | [diff] [blame] | 39 | #' pack_rows(x, "Group A", 2, 5) |
Hao Zhu | 78e6122 | 2017-05-24 20:53:35 -0400 | [diff] [blame] | 40 | #' |
Hao Zhu | 62cdde5 | 2017-05-20 22:16:03 -0400 | [diff] [blame] | 41 | #' @export |
Hao Zhu | 49483bf | 2017-09-12 11:21:00 -0400 | [diff] [blame] | 42 | group_rows <- function(kable_input, group_label = NULL, |
| 43 | start_row = NULL, end_row = NULL, |
| 44 | index = NULL, |
Hao Zhu | d972e7f | 2017-05-22 13:27:15 -0400 | [diff] [blame] | 45 | label_row_css = "border-bottom: 1px solid;", |
Hao Zhu | 49483bf | 2017-09-12 11:21:00 -0400 | [diff] [blame] | 46 | latex_gap_space = "0.3em", |
georgegui | 4cc925b | 2018-03-01 12:02:45 -0600 | [diff] [blame] | 47 | escape = TRUE, latex_align = "l", colnum = NULL, |
Hao Zhu | 2742ffc | 2018-10-17 11:23:44 -0400 | [diff] [blame] | 48 | bold = TRUE, |
| 49 | italic = FALSE, |
| 50 | hline_before = FALSE, |
| 51 | hline_after = FALSE, |
| 52 | extra_latex_after = NULL, |
| 53 | indent = TRUE) { |
Hao Zhu | 49483bf | 2017-09-12 11:21:00 -0400 | [diff] [blame] | 54 | |
Hao Zhu | 62cdde5 | 2017-05-20 22:16:03 -0400 | [diff] [blame] | 55 | kable_format <- attr(kable_input, "format") |
| 56 | if (!kable_format %in% c("html", "latex")) { |
Hao Zhu | 401ebd8 | 2018-01-14 17:10:20 -0500 | [diff] [blame] | 57 | warning("Please specify format in kable. kableExtra can customize either ", |
| 58 | "HTML or LaTeX outputs. See https://haozhu233.github.io/kableExtra/ ", |
| 59 | "for details.") |
Hao Zhu | 62cdde5 | 2017-05-20 22:16:03 -0400 | [diff] [blame] | 60 | return(kable_input) |
| 61 | } |
Hao Zhu | 49483bf | 2017-09-12 11:21:00 -0400 | [diff] [blame] | 62 | if (is.null(index)) { |
| 63 | if (kable_format == "html") { |
Salzer | 8f49eb6 | 2018-02-12 22:19:06 -0500 | [diff] [blame] | 64 | if(!missing(latex_align)) warning("latex_align parameter is not used in HTML Mode, |
Salzer | 1555085 | 2018-02-12 22:09:14 -0500 | [diff] [blame] | 65 | use label_row_css instead.") |
Hao Zhu | 49483bf | 2017-09-12 11:21:00 -0400 | [diff] [blame] | 66 | return(group_rows_html(kable_input, group_label, start_row, end_row, |
Hao Zhu | 2742ffc | 2018-10-17 11:23:44 -0400 | [diff] [blame] | 67 | label_row_css, escape, colnum, indent)) |
Hao Zhu | 49483bf | 2017-09-12 11:21:00 -0400 | [diff] [blame] | 68 | } |
| 69 | if (kable_format == "latex") { |
| 70 | return(group_rows_latex(kable_input, group_label, start_row, end_row, |
georgegui | 4cc925b | 2018-03-01 12:02:45 -0600 | [diff] [blame] | 71 | latex_gap_space, escape, latex_align, colnum, |
Hao Zhu | 2742ffc | 2018-10-17 11:23:44 -0400 | [diff] [blame] | 72 | bold, italic, hline_before, hline_after, |
| 73 | extra_latex_after, indent)) |
Hao Zhu | 49483bf | 2017-09-12 11:21:00 -0400 | [diff] [blame] | 74 | } |
| 75 | } else { |
| 76 | index <- group_row_index_translator(index) |
| 77 | out <- kable_input |
| 78 | if (kable_format == "html") { |
| 79 | for (i in 1:nrow(index)) { |
Salzer | 8f49eb6 | 2018-02-12 22:19:06 -0500 | [diff] [blame] | 80 | if(!missing(latex_align)) warning("latex_align parameter is not used in HTML Mode, |
Salzer | 1555085 | 2018-02-12 22:09:14 -0500 | [diff] [blame] | 81 | use label_row_css instead.") |
Hao Zhu | 49483bf | 2017-09-12 11:21:00 -0400 | [diff] [blame] | 82 | out <- group_rows_html(out, index$header[i], |
| 83 | index$start[i], index$end[i], |
Hao Zhu | 2742ffc | 2018-10-17 11:23:44 -0400 | [diff] [blame] | 84 | label_row_css, escape, colnum, indent) |
Hao Zhu | 49483bf | 2017-09-12 11:21:00 -0400 | [diff] [blame] | 85 | } |
| 86 | } |
| 87 | if (kable_format == "latex") { |
| 88 | for (i in 1:nrow(index)) { |
| 89 | out <- group_rows_latex(out, index$header[i], |
| 90 | index$start[i], index$end[i], |
georgegui | 4cc925b | 2018-03-01 12:02:45 -0600 | [diff] [blame] | 91 | latex_gap_space, escape, latex_align, colnum, |
Hao Zhu | 2742ffc | 2018-10-17 11:23:44 -0400 | [diff] [blame] | 92 | bold, italic, hline_before, hline_after, |
| 93 | extra_latex_after, indent) |
Hao Zhu | 49483bf | 2017-09-12 11:21:00 -0400 | [diff] [blame] | 94 | } |
| 95 | } |
| 96 | return(out) |
Hao Zhu | 62cdde5 | 2017-05-20 22:16:03 -0400 | [diff] [blame] | 97 | } |
Hao Zhu | 49483bf | 2017-09-12 11:21:00 -0400 | [diff] [blame] | 98 | } |
| 99 | |
| 100 | group_row_index_translator <- function(index) { |
| 101 | index <- standardize_header_input(index) |
| 102 | index$start <- cumsum(c(1, index$colspan))[1:length(index$colspan)] |
| 103 | index$end <- cumsum(index$colspan) |
| 104 | index$header <- trimws(index$header) |
| 105 | index <- index[index$header != "", ] |
| 106 | return(index) |
Hao Zhu | 62cdde5 | 2017-05-20 22:16:03 -0400 | [diff] [blame] | 107 | } |
| 108 | |
Hao Zhu | d972e7f | 2017-05-22 13:27:15 -0400 | [diff] [blame] | 109 | group_rows_html <- function(kable_input, group_label, start_row, end_row, |
Hao Zhu | 2742ffc | 2018-10-17 11:23:44 -0400 | [diff] [blame] | 110 | label_row_css, escape, colnum, indent) { |
Hao Zhu | 62cdde5 | 2017-05-20 22:16:03 -0400 | [diff] [blame] | 111 | kable_attrs <- attributes(kable_input) |
Hao Zhu | 558c72f | 2017-07-24 15:12:00 -0400 | [diff] [blame] | 112 | kable_xml <- read_kable_as_xml(kable_input) |
Hao Zhu | 62cdde5 | 2017-05-20 22:16:03 -0400 | [diff] [blame] | 113 | kable_tbody <- xml_tpart(kable_xml, "tbody") |
| 114 | |
Hao Zhu | ac7e70f | 2017-08-02 00:18:36 -0400 | [diff] [blame] | 115 | if (escape) { |
| 116 | group_label <- escape_html(group_label) |
| 117 | } |
| 118 | |
Hao Zhu | 62cdde5 | 2017-05-20 22:16:03 -0400 | [diff] [blame] | 119 | group_header_rows <- attr(kable_input, "group_header_rows") |
| 120 | group_seq <- seq(start_row, end_row) |
| 121 | if (!is.null(group_header_rows)) { |
| 122 | group_seq <- positions_corrector(group_seq, group_header_rows, |
| 123 | length(xml_children(kable_tbody))) |
| 124 | } |
| 125 | |
| 126 | # Insert a group header row |
| 127 | starting_node <- xml_child(kable_tbody, group_seq[1]) |
bsalzer | 8593327 | 2018-02-12 17:26:46 -0500 | [diff] [blame] | 128 | kable_ncol <- ifelse(is.null(colnum), |
| 129 | length(xml_children(starting_node)), |
| 130 | colnum) |
Hao Zhu | 62cdde5 | 2017-05-20 22:16:03 -0400 | [diff] [blame] | 131 | group_header_row_text <- paste0( |
Hao Zhu | d972e7f | 2017-05-22 13:27:15 -0400 | [diff] [blame] | 132 | '<tr groupLength="', length(group_seq), '"><td colspan="', kable_ncol, |
| 133 | '" style="', label_row_css, '"><strong>', group_label, |
| 134 | "</strong></td></tr>" |
Hao Zhu | 62cdde5 | 2017-05-20 22:16:03 -0400 | [diff] [blame] | 135 | ) |
| 136 | group_header_row <- read_xml(group_header_row_text, options = "COMPACT") |
| 137 | xml_add_sibling(starting_node, group_header_row, .where = "before") |
| 138 | |
| 139 | # add indentations to items |
Hao Zhu | f2dfd14 | 2017-07-24 14:43:28 -0400 | [diff] [blame] | 140 | out <- as_kable_xml(kable_xml) |
Hao Zhu | 62cdde5 | 2017-05-20 22:16:03 -0400 | [diff] [blame] | 141 | attributes(out) <- kable_attrs |
| 142 | attr(out, "group_header_rows") <- c(attr(out, "group_header_rows"), group_seq[1]) |
Hao Zhu | 2742ffc | 2018-10-17 11:23:44 -0400 | [diff] [blame] | 143 | if (indent) { |
| 144 | out <- add_indent_html(out, positions = seq(start_row, end_row)) |
| 145 | } |
Hao Zhu | 62cdde5 | 2017-05-20 22:16:03 -0400 | [diff] [blame] | 146 | return(out) |
| 147 | } |
Hao Zhu | d972e7f | 2017-05-22 13:27:15 -0400 | [diff] [blame] | 148 | |
Hao Zhu | fc14c9b | 2017-05-22 14:03:22 -0400 | [diff] [blame] | 149 | group_rows_latex <- function(kable_input, group_label, start_row, end_row, |
georgegui | 4cc925b | 2018-03-01 12:02:45 -0600 | [diff] [blame] | 150 | gap_space, escape, latex_align, colnum, |
Brian Salzer | a3f43ad | 2018-03-04 15:03:20 -0500 | [diff] [blame] | 151 | bold = T, italic = F, hline_before = F ,hline_after = F, |
Hao Zhu | 2742ffc | 2018-10-17 11:23:44 -0400 | [diff] [blame] | 152 | extra_latex_after = NULL, indent) { |
Hao Zhu | d972e7f | 2017-05-22 13:27:15 -0400 | [diff] [blame] | 153 | table_info <- magic_mirror(kable_input) |
Hao Zhu | 3fc0e88 | 2018-04-03 16:06:41 -0400 | [diff] [blame] | 154 | out <- solve_enc(kable_input) |
Hao Zhu | d972e7f | 2017-05-22 13:27:15 -0400 | [diff] [blame] | 155 | |
Hao Zhu | 064990d | 2017-10-17 18:08:42 -0400 | [diff] [blame] | 156 | if (table_info$duplicated_rows) { |
| 157 | dup_fx_out <- fix_duplicated_rows_latex(out, table_info) |
| 158 | out <- dup_fx_out[[1]] |
| 159 | table_info <- dup_fx_out[[2]] |
| 160 | } |
| 161 | |
Hao Zhu | ac7e70f | 2017-08-02 00:18:36 -0400 | [diff] [blame] | 162 | if (escape) { |
Hao Zhu | f94a26f | 2018-04-05 17:42:55 -0400 | [diff] [blame] | 163 | group_label <- input_escape(group_label, latex_align) |
Hao Zhu | ac7e70f | 2017-08-02 00:18:36 -0400 | [diff] [blame] | 164 | } |
| 165 | |
Hao Zhu | f94a26f | 2018-04-05 17:42:55 -0400 | [diff] [blame] | 166 | if (bold) { |
georgegui | 4cc925b | 2018-03-01 12:02:45 -0600 | [diff] [blame] | 167 | group_label <- paste0("\\\\textbf{", group_label, "}") |
| 168 | } |
Hao Zhu | f94a26f | 2018-04-05 17:42:55 -0400 | [diff] [blame] | 169 | if (italic) group_label <- paste0("\\\\textit{", group_label, "}") |
Hao Zhu | d972e7f | 2017-05-22 13:27:15 -0400 | [diff] [blame] | 170 | # Add group label |
Hao Zhu | d972e7f | 2017-05-22 13:27:15 -0400 | [diff] [blame] | 171 | if (table_info$booktabs) { |
Hao Zhu | 37dbe3f | 2018-05-14 11:16:06 -0400 | [diff] [blame] | 172 | rowtext <- table_info$contents[start_row + table_info$position_offset] |
georgegui | 4cc925b | 2018-03-01 12:02:45 -0600 | [diff] [blame] | 173 | pre_rowtext <- paste0( |
Hao Zhu | d972e7f | 2017-05-22 13:27:15 -0400 | [diff] [blame] | 174 | "\\\\addlinespace[", gap_space, "]\n", |
Brian Salzer | a3f43ad | 2018-03-04 15:03:20 -0500 | [diff] [blame] | 175 | ifelse(hline_before,"\\\\hline\n", ""), |
bsalzer | 8593327 | 2018-02-12 17:26:46 -0500 | [diff] [blame] | 176 | "\\\\multicolumn{", ifelse(is.null(colnum), |
| 177 | table_info$ncol, |
| 178 | colnum), |
georgegui | 4cc925b | 2018-03-01 12:02:45 -0600 | [diff] [blame] | 179 | "}{", latex_align, "}{", group_label, |
| 180 | "}\\\\\\\\\n", ifelse(hline_after, "\\\\hline\n", '') |
Hao Zhu | d972e7f | 2017-05-22 13:27:15 -0400 | [diff] [blame] | 181 | ) |
Hao Zhu | d972e7f | 2017-05-22 13:27:15 -0400 | [diff] [blame] | 182 | } else { |
Leo | 83f0513 | 2018-05-10 14:12:16 +0800 | [diff] [blame] | 183 | rowtext <- table_info$contents[start_row + 1] |
Hao Zhu | d972e7f | 2017-05-22 13:27:15 -0400 | [diff] [blame] | 184 | rowtext <- paste0("\\\\hline\n", rowtext) |
georgegui | 4cc925b | 2018-03-01 12:02:45 -0600 | [diff] [blame] | 185 | pre_rowtext <- paste0( |
| 186 | "\\\\hline\n\\\\multicolumn{", table_info$ncol, "}{", latex_align,"}{", |
| 187 | group_label, "}\\\\\\\\\n" |
Hao Zhu | d972e7f | 2017-05-22 13:27:15 -0400 | [diff] [blame] | 188 | ) |
| 189 | } |
georgegui | 4cc925b | 2018-03-01 12:02:45 -0600 | [diff] [blame] | 190 | if(!is.null(extra_latex_after)){ |
| 191 | pre_rowtext <- paste0(pre_rowtext, |
| 192 | regex_escape(extra_latex_after, double_backslash = TRUE)) |
| 193 | } |
| 194 | new_rowtext <- paste0(pre_rowtext, rowtext) |
Quôc Peyrot | ed7e624 | 2018-09-05 14:59:16 +0200 | [diff] [blame] | 195 | out <- sub(paste0(rowtext, "\\\\\\\\\n"), |
| 196 | paste0(new_rowtext, "\\\\\\\\\n"), |
| 197 | out) |
Hao Zhu | 8f20299 | 2017-07-15 02:20:18 -0400 | [diff] [blame] | 198 | out <- gsub("\\\\addlinespace\n", "", out) |
Hao Zhu | d2c0f73 | 2017-08-26 10:40:14 -0400 | [diff] [blame] | 199 | out <- structure(out, format = "latex", class = "knitr_kable") |
Hao Zhu | 32f43f7 | 2017-06-20 18:24:54 -0400 | [diff] [blame] | 200 | table_info$group_rows_used <- TRUE |
| 201 | attr(out, "kable_meta") <- table_info |
Hao Zhu | 2742ffc | 2018-10-17 11:23:44 -0400 | [diff] [blame] | 202 | if (indent) { |
| 203 | out <- add_indent_latex(out, seq(start_row, end_row)) |
| 204 | } |
Hao Zhu | d972e7f | 2017-05-22 13:27:15 -0400 | [diff] [blame] | 205 | return(out) |
| 206 | } |
Hao Zhu | be853f7 | 2018-05-20 18:52:26 -0400 | [diff] [blame] | 207 | |
| 208 | #' Automatically figuring out the group_row index |
| 209 | #' |
| 210 | #' @description This helper function allows users to build the `group_row` |
| 211 | #' index more quickly and use `group_rows` in a way that is similar with |
| 212 | #' `collapse_rows`. |
| 213 | #' |
| 214 | #' @param x The index column. A vector. For example `c("a", "a", "b", "b", "b")`` |
| 215 | #' |
| 216 | #' @export |
| 217 | auto_index <- function(x) { |
| 218 | x_rle <- rle(x) |
| 219 | index <- x_rle$lengths |
| 220 | names(index) <- x_rle$values |
| 221 | return(index) |
| 222 | } |
Hao Zhu | 72917f9 | 2019-03-15 18:41:42 -0400 | [diff] [blame] | 223 | |
| 224 | #' @rdname group_rows |
| 225 | #' @export |
| 226 | pack_rows <- group_rows |