blob: 81c8f97d87f3f2922cb85ef51404d3d7924737ce [file] [log] [blame]
Hao Zhu3166f062017-06-26 07:51:46 -10001#' Collapse repeated rows to multirow cell
Hao Zhu2a87e8e2017-06-14 15:49:33 -04002#'
Hao Zhu8a160b12017-06-26 13:41:35 -10003#' @description Collapse same values in columns into multirow cells. This
4#' feature does similar things with `group_rows`. However, unlike `group_rows`,
5#' it analyzes existing columns, finds out rows that can be grouped together,
6#' and make them multirow cells. Note that if you want to use `column_spec` to
7#' specify column styles, you should use `column_spec` before `collapse_rows`.
8#'
9#' @param kable_input Output of `knitr::kable()` with `format` specified
Hao Zhu5e2528e2020-08-03 09:16:34 -040010#' @param columns A numeric value or vector indicating in which column(s) rows
Jakob Richteraebd8292018-10-31 16:27:29 +010011#' need to be collapsed.
Hao Zhuec169362018-05-21 01:05:29 -040012#' @param valign Select from "top", "middle"(default), "bottom". The reason why
13#' "top" is not default is that the multirow package on CRAN win-builder is
14#' not up to date.
Hao Zhu12b0ade2018-01-13 16:19:58 -050015#' @param latex_hline Option controlling the behavior of adding hlines to table.
Hao Zhud0f7c8a2020-08-20 01:17:23 -040016#' Choose from `full`, `major`, `none`, `custom` and `linespace`.
georgeguieaeb0cd2018-03-30 17:39:46 -050017#' @param custom_latex_hline Numeric column positions whose collapsed rows will
18#' be separated by hlines.
19#' @param row_group_label_position Option controlling positions of row group
20#' labels. Choose from `identity`, `stack`.
21#' @param row_group_label_fonts A list of arguments that can be supplied to
22#' group_rows function to format the row group label when
23#' `row_group_label_position` is `stack`
24#' @param headers_to_remove Numeric column positions where headers should be
25#' removed when they are stacked.
Hao Zhuc9858942020-08-11 21:41:09 -040026#' @param target If multiple columns are selected to do collapsing and a target
27#' column is specified, this target column will be used to collapse other
28#' columns based on the groups of this target column.
29#' @param col_names T/F. A LaTeX specific option. If you set `col.names` be
30#' `NULL` in your `kable` call, you need to set this option false to let
31#' everything work properly.
Hao Zhu71b30f22020-08-12 22:47:13 -040032#' @param longtable_clean_cut T/F with default T. Multirow cell sometimes are
33#' displayed incorrectly around pagebreak. This option forces groups to cut
34#' before the end of a page. If you have a group that is longer than 1 page,
35#' you need to turn off this option.
Hao Zhu8a160b12017-06-26 13:41:35 -100036#'
Hao Zhu9399dcc2020-08-26 17:27:38 -040037#' @examples
38#' \dontrun{
39#' dt <- data.frame(a = c(1, 1, 2, 2), b = c("a", "a", "a", "b"))
Hao Zhu5a7689e2017-06-26 15:37:24 -100040#' x <- knitr::kable(dt, "html")
41#' collapse_rows(x)
Hao Zhu9399dcc2020-08-26 17:27:38 -040042#' }
Hao Zhu5a7689e2017-06-26 15:37:24 -100043#'
Hao Zhuf4b35292017-06-25 22:38:37 -100044#' @export
Hao Zhu12b0ade2018-01-13 16:19:58 -050045collapse_rows <- function(kable_input, columns = NULL,
Hao Zhuec169362018-05-21 01:05:29 -040046 valign = c("middle", "top", "bottom"),
Hao Zhud0f7c8a2020-08-20 01:17:23 -040047 latex_hline = c("full", "major", "none", "custom",
48 "linespace"),
georgeguieaeb0cd2018-03-30 17:39:46 -050049 row_group_label_position = c('identity', 'stack'),
50 custom_latex_hline = NULL,
51 row_group_label_fonts = NULL,
Hao Zhu5e2528e2020-08-03 09:16:34 -040052 headers_to_remove = NULL,
Hao Zhuc9858942020-08-11 21:41:09 -040053 target = NULL,
Hao Zhu71b30f22020-08-12 22:47:13 -040054 col_names = TRUE,
55 longtable_clean_cut = TRUE) {
Hao Zhu2a87e8e2017-06-14 15:49:33 -040056 kable_format <- attr(kable_input, "format")
57 if (!kable_format %in% c("html", "latex")) {
Hao Zhu401ebd82018-01-14 17:10:20 -050058 warning("Please specify format in kable. kableExtra can customize either ",
59 "HTML or LaTeX outputs. See https://haozhu233.github.io/kableExtra/ ",
60 "for details.")
Hao Zhu2a87e8e2017-06-14 15:49:33 -040061 return(kable_input)
62 }
Hao Zhu33b865f2020-08-18 02:10:43 -040063 valign <- match.arg(valign)
Hao Zhu5e2528e2020-08-03 09:16:34 -040064 if (!is.null(target)) {
65 if (length(target) > 1 && is.integer(target)) {
66 stop("target can only be a length 1 integer")
67 }
68 }
Hao Zhu2a87e8e2017-06-14 15:49:33 -040069 if (kable_format == "html") {
Hao Zhu5e2528e2020-08-03 09:16:34 -040070 return(collapse_rows_html(kable_input, columns, valign, target))
Hao Zhu2a87e8e2017-06-14 15:49:33 -040071 }
72 if (kable_format == "latex") {
Hao Zhu33b865f2020-08-18 02:10:43 -040073 latex_hline <- match.arg(latex_hline)
georgeguieaeb0cd2018-03-30 17:39:46 -050074 row_group_label_position <- match.arg(row_group_label_position,
75 c('identity', 'stack'))
Hao Zhu5dd3e282018-05-20 18:39:48 -040076 return(collapse_rows_latex(kable_input, columns, latex_hline, valign,
georgeguieaeb0cd2018-03-30 17:39:46 -050077 row_group_label_position, row_group_label_fonts, custom_latex_hline,
Hao Zhu71b30f22020-08-12 22:47:13 -040078 headers_to_remove, target, col_names, longtable_clean_cut))
Hao Zhu2a87e8e2017-06-14 15:49:33 -040079 }
80}
81
Hao Zhu5e2528e2020-08-03 09:16:34 -040082collapse_rows_html <- function(kable_input, columns, valign, target) {
Hao Zhu2a87e8e2017-06-14 15:49:33 -040083 kable_attrs <- attributes(kable_input)
Hao Zhu5e2528e2020-08-03 09:16:34 -040084 kable_xml <- kable_as_xml(kable_input)
Hao Zhu2a87e8e2017-06-14 15:49:33 -040085 kable_tbody <- xml_tpart(kable_xml, "tbody")
86
87 kable_dt <- rvest::html_table(xml2::read_html(as.character(kable_input)))[[1]]
Hao Zhua6af5c02021-03-11 22:28:25 -050088 kable_dt <- as.data.frame(kable_dt)
Hao Zhuf4b35292017-06-25 22:38:37 -100089 if (is.null(columns)) {
90 columns <- seq(1, ncol(kable_dt))
91 }
Hao Zhu5e2528e2020-08-03 09:16:34 -040092 if (!is.null(target)) {
93 if (!target %in% columns) {
94 stop("target has to be within the range of columns")
95 }
96 }
Hao Zhu23456762018-03-26 12:30:10 -040097 if (!is.null(kable_attrs$header_above)) {
98 kable_dt_col_names <- unlist(kable_dt[kable_attrs$header_above, ])
99 kable_dt <- kable_dt[-(1:kable_attrs$header_above),]
100 names(kable_dt) <- kable_dt_col_names
101 }
Hao Zhu5e2528e2020-08-03 09:16:34 -0400102 collapse_matrix <- collapse_row_matrix(kable_dt, columns, target = target)
Hao Zhu2a87e8e2017-06-14 15:49:33 -0400103
104 for (i in 1:nrow(collapse_matrix)) {
105 matrix_row <- collapse_matrix[i, ]
Hao Zhu38cdcdb2017-06-27 09:08:30 -1000106 names(matrix_row) <- names(collapse_matrix)
Hao Zhu3166f062017-06-26 07:51:46 -1000107 target_row <- xml_child(kable_tbody, i)
108 row_node_rm_count <- 0
109 for (j in 1:length(matrix_row)) {
110 collapsing_col <- as.numeric(sub("x", "", names(matrix_row)[j])) -
111 row_node_rm_count
112 target_cell <- xml_child(target_row, collapsing_col)
113 if (matrix_row[j] == 0) {
114 xml_remove(target_cell)
115 row_node_rm_count <- row_node_rm_count + 1
116 } else if (matrix_row[j] != 1) {
117 xml_attr(target_cell, "rowspan") <- matrix_row[j]
118 xml_attr(target_cell, "style") <- paste0(
119 xml_attr(target_cell, "style"),
Hao Zhu5dd3e282018-05-20 18:39:48 -0400120 "vertical-align: ", valign, " !important;")
Hao Zhu2a87e8e2017-06-14 15:49:33 -0400121 }
122 }
123 }
124
Hao Zhuf2dfd142017-07-24 14:43:28 -0400125 out <- as_kable_xml(kable_xml)
Hao Zhufdff6f42020-08-09 14:38:10 -0400126 kable_attrs$collapse_matrix <- collapse_matrix
Hao Zhu2a87e8e2017-06-14 15:49:33 -0400127 attributes(out) <- kable_attrs
Hao Zhuf2100832018-01-11 16:20:29 -0500128 if (!"kableExtra" %in% class(out)) class(out) <- c("kableExtra", class(out))
Hao Zhu2a87e8e2017-06-14 15:49:33 -0400129 return(out)
130}
131
Hao Zhu5e2528e2020-08-03 09:16:34 -0400132split_factor <- function(x) {
133 group_idx <- seq(1, length(x))
134 return(factor(unlist(lapply(group_idx, function(i) {rep(i, x[i])}))))
135}
136
137collapse_row_matrix <- function(kable_dt, columns, html = T, target = NULL) {
Hao Zhuf4b35292017-06-25 22:38:37 -1000138 if (html) {
139 column_block <- function(x) c(x, rep(0, x - 1))
140 } else {
141 column_block <- function(x) c(rep(0, x - 1), x)
142 }
143 mapping_matrix <- list()
Hao Zhu5e2528e2020-08-03 09:16:34 -0400144 if (is.null(target)) {
145 for (i in columns) {
146 mapping_matrix[[paste0("x", i)]] <- unlist(lapply(
147 rle(kable_dt[, i])$lengths, column_block))
148 }
149 } else {
150 target_group = split_factor(rle(kable_dt[, target])$lengths)
151 for (i in columns) {
152 column_split = split(kable_dt[, i], target_group)
153 mapping_matrix[[paste0("x", i)]] <- unlist(lapply(
154 column_split, function(sp) {
155 lapply(rle(sp)$length, column_block)
156 }))
157 }
Hao Zhuf4b35292017-06-25 22:38:37 -1000158 }
Hao Zhu5e2528e2020-08-03 09:16:34 -0400159
Hao Zhuf4b35292017-06-25 22:38:37 -1000160 mapping_matrix <- data.frame(mapping_matrix)
161 return(mapping_matrix)
162}
163
Hao Zhu5dd3e282018-05-20 18:39:48 -0400164collapse_rows_latex <- function(kable_input, columns, latex_hline, valign,
georgeguieaeb0cd2018-03-30 17:39:46 -0500165 row_group_label_position, row_group_label_fonts,
Hao Zhuc9858942020-08-11 21:41:09 -0400166 custom_latex_hline, headers_to_remove, target,
Hao Zhu71b30f22020-08-12 22:47:13 -0400167 col_names, longtable_clean_cut) {
Hao Zhuf4b35292017-06-25 22:38:37 -1000168 table_info <- magic_mirror(kable_input)
Hao Zhuc33b1f42020-10-05 23:16:57 -0400169 if (table_info$nrow <= 2) return(kable_input)
Hao Zhu3fc0e882018-04-03 16:06:41 -0400170 out <- solve_enc(kable_input)
Hao Zhu876bcb02020-08-12 23:02:51 -0400171 out <- gsub("\\\\addlinespace\n", "", out)
Hao Zhu064990d2017-10-17 18:08:42 -0400172
Hao Zhu5dd3e282018-05-20 18:39:48 -0400173 valign <- switch(
174 valign,
175 top = "\\[t\\]",
176 middle = "",
177 bottom = "\\[b\\]"
178 )
179
Hao Zhuf4b35292017-06-25 22:38:37 -1000180 if (is.null(columns)) {
181 columns <- seq(1, table_info$ncol)
182 }
Hao Zhu064990d2017-10-17 18:08:42 -0400183
Hao Zhuf4b35292017-06-25 22:38:37 -1000184 contents <- table_info$contents
Hao Zhuc9858942020-08-11 21:41:09 -0400185 kable_dt <- kable_dt_latex(contents, col_names)
georgeguieaeb0cd2018-03-30 17:39:46 -0500186
Hao Zhuaa424412020-08-03 09:21:46 -0400187 collapse_matrix_rev <- collapse_row_matrix(kable_dt, columns, html = TRUE,
188 target)
189 collapse_matrix <- collapse_row_matrix(kable_dt, columns, html = FALSE,
190 target)
Hao Zhuf4b35292017-06-25 22:38:37 -1000191
192 new_kable_dt <- kable_dt
Jakob Richteraebd8292018-10-31 16:27:29 +0100193 for (j in seq_along(columns)) {
Hao Zhuf4b35292017-06-25 22:38:37 -1000194 column_align <- table_info$align_vector_origin[columns[j]]
195 column_width <- ifelse(
196 is.null(table_info$column_width[[paste0("column_", columns[j])]]),
Hao Zhu4e34cd82020-08-19 01:54:23 -0400197 "\\*", table_info$column_width[paste0("column_", columns[j])])
Hao Zhuf4b35292017-06-25 22:38:37 -1000198 for (i in seq(1:nrow(collapse_matrix))) {
georgeguieaeb0cd2018-03-30 17:39:46 -0500199 if(row_group_label_position == 'stack'){
Jakob Richteraebd8292018-10-31 16:27:29 +0100200 if(columns[j] < ncol(collapse_matrix) || collapse_matrix_rev[i, j] == 0){
201 new_kable_dt[i, columns[j]] <- ''
georgeguieaeb0cd2018-03-30 17:39:46 -0500202 }
203 } else {
Jakob Richteraebd8292018-10-31 16:27:29 +0100204 new_kable_dt[i, columns[j]] <- collapse_new_dt_item(
205 kable_dt[i, columns[j]], collapse_matrix[i, j], column_width,
Hao Zhu5dd3e282018-05-20 18:39:48 -0400206 align = column_align, valign = valign
georgeguieaeb0cd2018-03-30 17:39:46 -0500207 )
208 }
Hao Zhuf4b35292017-06-25 22:38:37 -1000209 }
210 }
Hao Zhu654c91f2017-07-03 14:03:34 -0400211
212 midrule_matrix <- collapse_row_matrix(kable_dt, seq(1, table_info$ncol),
Hao Zhuaa424412020-08-03 09:21:46 -0400213 html = FALSE, target)
Hao Zhu654c91f2017-07-03 14:03:34 -0400214 midrule_matrix[setdiff(seq(1, table_info$ncol), columns)] <- 1
215
216 ex_bottom <- length(contents) - 1
217 contents[2:ex_bottom] <- paste0(contents[2:ex_bottom], "\\\\\\\\")
218 if (!table_info$booktabs) {
219 contents[2:ex_bottom] <- paste0(contents[2:ex_bottom], "\n\\\\hline")
220 }
Hao Zhu01b15b82018-01-12 17:48:21 -0500221
222 new_contents <- c()
georgeguieaeb0cd2018-03-30 17:39:46 -0500223 if(row_group_label_position == 'stack'){
224 if(is.null(headers_to_remove)) headers_to_remove <- head(columns, -1)
225 table_info$colnames[headers_to_remove] <- ''
226 new_header <- paste(table_info$colnames, collapse = ' & ')
227 out <- sub(contents[1], new_header, out)
228 table_info$contents[1] <- new_header
229 }
230 if(latex_hline == 'custom' & is.null(custom_latex_hline)){
231 if(row_group_label_position == 'stack'){
232 custom_latex_hline = 1:2
233 } else {
234 custom_latex_hline = 1
235 }
236 }
Hao Zhud0f7c8a2020-08-20 01:17:23 -0400237
238 if (table_info$tabular == "longtable" & longtable_clean_cut) {
239 if (max(collapse_matrix) > 50) {
240 warning("It seems that you have a group larger than 50 rows and span ",
241 "over a page. You probably want to set longtable_clean_cut to ",
242 "be FALSE.")
243 }
244 pagebreak_hint <- "\\\\pagebreak[0]"
245 nopagebreak <- "\\\\nopagebreak"
246 # out <- gsub("\\\\\\\\($|\n)", "\\\\\\\\\\\\nopagebreak\\1", out)
247 # out <- gsub("(\\\\cmidrule[{][^}]*[}])", "\\1\\\\pagebreak[0]", out)
248 } else {
249 pagebreak_hint <- ""
250 nopagebreak <- ""
251 }
252
Hao Zhuf4b35292017-06-25 22:38:37 -1000253 for (i in seq(1:nrow(collapse_matrix))) {
254 new_contents[i] <- paste0(new_kable_dt[i, ], collapse = " & ")
Hao Zhu12b0ade2018-01-13 16:19:58 -0500255 table_info$contents[i + 1] <- new_contents[i]
Hao Zhu654c91f2017-07-03 14:03:34 -0400256 if (i != nrow(collapse_matrix)) {
Hao Zhu12b0ade2018-01-13 16:19:58 -0500257 row_midrule <- switch(
258 latex_hline,
259 "none" = "",
Hao Zhud0f7c8a2020-08-20 01:17:23 -0400260 "full" = paste0(
Hao Zhu71b30f22020-08-12 22:47:13 -0400261 midline_groups(which(as.numeric(midrule_matrix[i, ]) > 0),
262 table_info$booktabs),
Hao Zhud0f7c8a2020-08-20 01:17:23 -0400263 ifelse(
264 sum(as.numeric(midrule_matrix[i, ]) > 0) == ncol(midrule_matrix),
265 pagebreak_hint, nopagebreak
266 )
Hao Zhu71b30f22020-08-12 22:47:13 -0400267 ),
Hao Zhu12b0ade2018-01-13 16:19:58 -0500268 "major" = ifelse(
269 sum(as.numeric(midrule_matrix[i, ]) > 0) == ncol(midrule_matrix),
Hao Zhud0f7c8a2020-08-20 01:17:23 -0400270 paste0(midline_groups(which(as.numeric(midrule_matrix[i, ]) > 0),
271 table_info$booktabs), pagebreak_hint),
272 nopagebreak
georgeguieaeb0cd2018-03-30 17:39:46 -0500273 ),
274 "custom" = ifelse(
275 sum(as.numeric(midrule_matrix[i, custom_latex_hline])) > 0,
276 midline_groups(which(as.numeric(midrule_matrix[i, ]) > 0),
277 table_info$booktabs),
278 ""
Hao Zhu876bcb02020-08-12 23:02:51 -0400279 ),
280 "linespace"= ifelse(
281 sum(as.numeric(midrule_matrix[i, ]) > 0) == ncol(midrule_matrix),
Hao Zhud0f7c8a2020-08-20 01:17:23 -0400282 "\\\\addlinespace",
Hao Zhu876bcb02020-08-12 23:02:51 -0400283 ""
284 )
Hao Zhu12b0ade2018-01-13 16:19:58 -0500285 )
Hao Zhu654c91f2017-07-03 14:03:34 -0400286 new_contents[i] <- paste0(new_contents[i], "\\\\\\\\\n", row_midrule)
287 }
Hao Zhub3f26ae2020-08-04 00:36:52 -0400288 out <- sub(contents[i + 1], new_contents[i], out, perl=TRUE)
Hao Zhuf4b35292017-06-25 22:38:37 -1000289 }
Hao Zhuf4b35292017-06-25 22:38:37 -1000290 out <- structure(out, format = "latex", class = "knitr_kable")
291 table_info$collapse_rows <- TRUE
Hao Zhuebdb3c22020-08-12 08:27:38 -0400292 table_info$collapse_matrix <- collapse_matrix
Hao Zhuf4b35292017-06-25 22:38:37 -1000293 attr(out, "kable_meta") <- table_info
georgeguieaeb0cd2018-03-30 17:39:46 -0500294 if(row_group_label_position == 'stack'){
295 group_row_index_list <- collapse_rows_index(kable_dt, head(columns, -1))
296 out <- collapse_rows_latex_stack(out, group_row_index_list, row_group_label_fonts)
297 }
Hao Zhuf4b35292017-06-25 22:38:37 -1000298 return(out)
299}
300
Hao Zhuc9858942020-08-11 21:41:09 -0400301kable_dt_latex <- function(x, col_names) {
302 if (col_names) {
303 x <- x[-1]
304 }
305 data.frame(do.call(rbind, str_split(x, " & ")), stringsAsFactors = FALSE)
Hao Zhuf4b35292017-06-25 22:38:37 -1000306}
307
Hao Zhu5dd3e282018-05-20 18:39:48 -0400308collapse_new_dt_item <- function(x, span, width = NULL, align, valign) {
Hao Zhuf4b35292017-06-25 22:38:37 -1000309 if (span == 0) return("")
310 if (span == 1) return(x)
311 out <- paste0(
Hao Zhu5dd3e282018-05-20 18:39:48 -0400312 "\\\\multirow", valign, "\\{", -span, "\\}\\{",
Hao Zhuf4b35292017-06-25 22:38:37 -1000313 ifelse(is.null(width), "\\*", width),
314 "\\}\\{",
315 switch(align,
316 "l" = "\\\\raggedright\\\\arraybackslash ",
317 "c" = "\\\\centering\\\\arraybackslash ",
318 "r" = "\\\\raggedleft\\\\arraybackslash "),
319 x, "\\}"
320 )
321 return(out)
Hao Zhu2a87e8e2017-06-14 15:49:33 -0400322}
Hao Zhu654c91f2017-07-03 14:03:34 -0400323
324midline_groups <- function(x, booktabs = T) {
325 diffs <- c(1, diff(x))
326 start_indexes <- c(1, which(diffs > 1))
Hao Zhu12b0ade2018-01-13 16:19:58 -0500327 end_indexes <- c(start_indexes - 1, length(x))
Hao Zhu654c91f2017-07-03 14:03:34 -0400328 ranges <- paste0(x[start_indexes], "-", x[end_indexes])
329 if (booktabs) {
330 out <- paste0("\\\\cmidrule{", ranges, "}")
331 } else {
332 out <- paste0("\\\\cline{", ranges, "}")
333 }
334 out <- paste0(out, collapse = "\n")
335 return(out)
336}
georgeguieaeb0cd2018-03-30 17:39:46 -0500337
Hao Zhu876bcb02020-08-12 23:02:51 -0400338linespace_groups <- function(x) {
339 diffs <- c(1, diff(x))
340 start_indexes <- c(1, which(diffs > 1))
341 end_indexes <- c(start_indexes - 1, length(x))
342 ranges <- paste0(x[start_indexes], "-", x[end_indexes])
343 out <- paste0("\\\\addlinespace")
344 out <- paste0(out, collapse = "\n")
345 return(out)
346}
347
georgeguieaeb0cd2018-03-30 17:39:46 -0500348
349collapse_rows_index <- function(kable_dt, columns) {
350 format_to_row_index <- function(x){
351 x = rle(x)
352 out = x$lengths
353 names(out) = x$values
354 out
355 }
356 group_rows_index_list <- lapply(columns, function(x) {
357 format_to_row_index(kable_dt[, x])
358 })
359 return(group_rows_index_list)
360}
361
362
363collapse_rows_latex_stack <- function(kable_input, group_row_index_list,
364 row_group_label_fonts){
365 merge_lists <- function(default_list, updated_list){
366 for(x in names(updated_list)){
367 default_list[[x]] <- updated_list[[x]]
368 }
369 return(default_list)
370 }
371 default_font_list <- list(
372 list(bold = T, italic = F),
373 list(bold = F, italic = T),
374 list(bold = F, italic = F)
375 )
376 n_default_fonts = length(default_font_list)
377 n_supplied_fonts = length(row_group_label_fonts)
378 group_row_font_list <- list()
379 out <- kable_input
380 for(i in 1:length(group_row_index_list)){
381 if(i > n_default_fonts){
382 group_row_args <- default_font_list[[n_default_fonts]]
383 } else {
384 group_row_args <- default_font_list[[i]]
385 }
386 if(i <= n_supplied_fonts){
387 group_row_args <- merge_lists(group_row_args, row_group_label_fonts[[i]])
388 }
389 group_row_args <- merge_lists(
Hao Zhu718fa3f2020-08-19 08:23:28 -0400390 list(kable_input = out, index = group_row_index_list[[i]], escape = FALSE),
georgeguieaeb0cd2018-03-30 17:39:46 -0500391 group_row_args)
392 out <- do.call(group_rows, group_row_args)
393 }
394 return(out)
395}