blob: 927502ef3fc1c8dddda4a45b2a6e4aaf8c85d7d6 [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 Zhu876bcb02020-08-12 23:02:51 -040016#' Choose from `major`, `full`, `none`, `custom` and `linespace`. We changed the default from
Hao Zhu71b30f22020-08-12 22:47:13 -040017#' `full` to `major` in version 1.2.
georgeguieaeb0cd2018-03-30 17:39:46 -050018#' @param custom_latex_hline Numeric column positions whose collapsed rows will
19#' be separated by hlines.
20#' @param row_group_label_position Option controlling positions of row group
21#' labels. Choose from `identity`, `stack`.
22#' @param row_group_label_fonts A list of arguments that can be supplied to
23#' group_rows function to format the row group label when
24#' `row_group_label_position` is `stack`
25#' @param headers_to_remove Numeric column positions where headers should be
26#' removed when they are stacked.
Hao Zhuc9858942020-08-11 21:41:09 -040027#' @param target If multiple columns are selected to do collapsing and a target
28#' column is specified, this target column will be used to collapse other
29#' columns based on the groups of this target column.
30#' @param col_names T/F. A LaTeX specific option. If you set `col.names` be
31#' `NULL` in your `kable` call, you need to set this option false to let
32#' everything work properly.
Hao Zhu71b30f22020-08-12 22:47:13 -040033#' @param longtable_clean_cut T/F with default T. Multirow cell sometimes are
34#' displayed incorrectly around pagebreak. This option forces groups to cut
35#' before the end of a page. If you have a group that is longer than 1 page,
36#' you need to turn off this option.
Hao Zhu8a160b12017-06-26 13:41:35 -100037#'
Hao Zhu5a7689e2017-06-26 15:37:24 -100038#' @examples dt <- data.frame(a = c(1, 1, 2, 2), b = c("a", "a", "a", "b"))
39#' x <- knitr::kable(dt, "html")
40#' collapse_rows(x)
41#'
Hao Zhuf4b35292017-06-25 22:38:37 -100042#' @export
Hao Zhu12b0ade2018-01-13 16:19:58 -050043collapse_rows <- function(kable_input, columns = NULL,
Hao Zhuec169362018-05-21 01:05:29 -040044 valign = c("middle", "top", "bottom"),
Hao Zhu71b30f22020-08-12 22:47:13 -040045 latex_hline = c("major", "full", "none", "custom"),
georgeguieaeb0cd2018-03-30 17:39:46 -050046 row_group_label_position = c('identity', 'stack'),
47 custom_latex_hline = NULL,
48 row_group_label_fonts = NULL,
Hao Zhu5e2528e2020-08-03 09:16:34 -040049 headers_to_remove = NULL,
Hao Zhuc9858942020-08-11 21:41:09 -040050 target = NULL,
Hao Zhu71b30f22020-08-12 22:47:13 -040051 col_names = TRUE,
52 longtable_clean_cut = TRUE) {
Hao Zhu2a87e8e2017-06-14 15:49:33 -040053 kable_format <- attr(kable_input, "format")
54 if (!kable_format %in% c("html", "latex")) {
Hao Zhu401ebd82018-01-14 17:10:20 -050055 warning("Please specify format in kable. kableExtra can customize either ",
56 "HTML or LaTeX outputs. See https://haozhu233.github.io/kableExtra/ ",
57 "for details.")
Hao Zhu2a87e8e2017-06-14 15:49:33 -040058 return(kable_input)
59 }
Hao Zhuec169362018-05-21 01:05:29 -040060 valign <- match.arg(valign, c("middle", "top", "bottom"))
Hao Zhu5e2528e2020-08-03 09:16:34 -040061 if (!is.null(target)) {
62 if (length(target) > 1 && is.integer(target)) {
63 stop("target can only be a length 1 integer")
64 }
65 }
Hao Zhu2a87e8e2017-06-14 15:49:33 -040066 if (kable_format == "html") {
Hao Zhu5e2528e2020-08-03 09:16:34 -040067 return(collapse_rows_html(kable_input, columns, valign, target))
Hao Zhu2a87e8e2017-06-14 15:49:33 -040068 }
69 if (kable_format == "latex") {
Hao Zhu876bcb02020-08-12 23:02:51 -040070 latex_hline <- match.arg(latex_hline, c(
71 "major", "full", "none", "custom", "linespace"))
georgeguieaeb0cd2018-03-30 17:39:46 -050072 row_group_label_position <- match.arg(row_group_label_position,
73 c('identity', 'stack'))
Hao Zhu5dd3e282018-05-20 18:39:48 -040074 return(collapse_rows_latex(kable_input, columns, latex_hline, valign,
georgeguieaeb0cd2018-03-30 17:39:46 -050075 row_group_label_position, row_group_label_fonts, custom_latex_hline,
Hao Zhu71b30f22020-08-12 22:47:13 -040076 headers_to_remove, target, col_names, longtable_clean_cut))
Hao Zhu2a87e8e2017-06-14 15:49:33 -040077 }
78}
79
Hao Zhu5e2528e2020-08-03 09:16:34 -040080collapse_rows_html <- function(kable_input, columns, valign, target) {
Hao Zhu2a87e8e2017-06-14 15:49:33 -040081 kable_attrs <- attributes(kable_input)
Hao Zhu5e2528e2020-08-03 09:16:34 -040082 kable_xml <- kable_as_xml(kable_input)
Hao Zhu2a87e8e2017-06-14 15:49:33 -040083 kable_tbody <- xml_tpart(kable_xml, "tbody")
84
85 kable_dt <- rvest::html_table(xml2::read_html(as.character(kable_input)))[[1]]
Hao Zhuf4b35292017-06-25 22:38:37 -100086 if (is.null(columns)) {
87 columns <- seq(1, ncol(kable_dt))
88 }
Hao Zhu5e2528e2020-08-03 09:16:34 -040089 if (!is.null(target)) {
90 if (!target %in% columns) {
91 stop("target has to be within the range of columns")
92 }
93 }
Hao Zhu23456762018-03-26 12:30:10 -040094 if (!is.null(kable_attrs$header_above)) {
95 kable_dt_col_names <- unlist(kable_dt[kable_attrs$header_above, ])
96 kable_dt <- kable_dt[-(1:kable_attrs$header_above),]
97 names(kable_dt) <- kable_dt_col_names
98 }
Hao Zhu5e2528e2020-08-03 09:16:34 -040099 collapse_matrix <- collapse_row_matrix(kable_dt, columns, target = target)
Hao Zhu2a87e8e2017-06-14 15:49:33 -0400100
101 for (i in 1:nrow(collapse_matrix)) {
102 matrix_row <- collapse_matrix[i, ]
Hao Zhu38cdcdb2017-06-27 09:08:30 -1000103 names(matrix_row) <- names(collapse_matrix)
Hao Zhu3166f062017-06-26 07:51:46 -1000104 target_row <- xml_child(kable_tbody, i)
105 row_node_rm_count <- 0
106 for (j in 1:length(matrix_row)) {
107 collapsing_col <- as.numeric(sub("x", "", names(matrix_row)[j])) -
108 row_node_rm_count
109 target_cell <- xml_child(target_row, collapsing_col)
110 if (matrix_row[j] == 0) {
111 xml_remove(target_cell)
112 row_node_rm_count <- row_node_rm_count + 1
113 } else if (matrix_row[j] != 1) {
114 xml_attr(target_cell, "rowspan") <- matrix_row[j]
115 xml_attr(target_cell, "style") <- paste0(
116 xml_attr(target_cell, "style"),
Hao Zhu5dd3e282018-05-20 18:39:48 -0400117 "vertical-align: ", valign, " !important;")
Hao Zhu2a87e8e2017-06-14 15:49:33 -0400118 }
119 }
120 }
121
Hao Zhuf2dfd142017-07-24 14:43:28 -0400122 out <- as_kable_xml(kable_xml)
Hao Zhufdff6f42020-08-09 14:38:10 -0400123 kable_attrs$collapse_matrix <- collapse_matrix
Hao Zhu2a87e8e2017-06-14 15:49:33 -0400124 attributes(out) <- kable_attrs
Hao Zhuf2100832018-01-11 16:20:29 -0500125 if (!"kableExtra" %in% class(out)) class(out) <- c("kableExtra", class(out))
Hao Zhu2a87e8e2017-06-14 15:49:33 -0400126 return(out)
127}
128
Hao Zhu5e2528e2020-08-03 09:16:34 -0400129split_factor <- function(x) {
130 group_idx <- seq(1, length(x))
131 return(factor(unlist(lapply(group_idx, function(i) {rep(i, x[i])}))))
132}
133
134collapse_row_matrix <- function(kable_dt, columns, html = T, target = NULL) {
Hao Zhuf4b35292017-06-25 22:38:37 -1000135 if (html) {
136 column_block <- function(x) c(x, rep(0, x - 1))
137 } else {
138 column_block <- function(x) c(rep(0, x - 1), x)
139 }
140 mapping_matrix <- list()
Hao Zhu5e2528e2020-08-03 09:16:34 -0400141 if (is.null(target)) {
142 for (i in columns) {
143 mapping_matrix[[paste0("x", i)]] <- unlist(lapply(
144 rle(kable_dt[, i])$lengths, column_block))
145 }
146 } else {
147 target_group = split_factor(rle(kable_dt[, target])$lengths)
148 for (i in columns) {
149 column_split = split(kable_dt[, i], target_group)
150 mapping_matrix[[paste0("x", i)]] <- unlist(lapply(
151 column_split, function(sp) {
152 lapply(rle(sp)$length, column_block)
153 }))
154 }
Hao Zhuf4b35292017-06-25 22:38:37 -1000155 }
Hao Zhu5e2528e2020-08-03 09:16:34 -0400156
Hao Zhuf4b35292017-06-25 22:38:37 -1000157 mapping_matrix <- data.frame(mapping_matrix)
158 return(mapping_matrix)
159}
160
Hao Zhu5dd3e282018-05-20 18:39:48 -0400161collapse_rows_latex <- function(kable_input, columns, latex_hline, valign,
georgeguieaeb0cd2018-03-30 17:39:46 -0500162 row_group_label_position, row_group_label_fonts,
Hao Zhuc9858942020-08-11 21:41:09 -0400163 custom_latex_hline, headers_to_remove, target,
Hao Zhu71b30f22020-08-12 22:47:13 -0400164 col_names, longtable_clean_cut) {
Hao Zhuf4b35292017-06-25 22:38:37 -1000165 table_info <- magic_mirror(kable_input)
Hao Zhu3fc0e882018-04-03 16:06:41 -0400166 out <- solve_enc(kable_input)
Hao Zhu876bcb02020-08-12 23:02:51 -0400167 out <- gsub("\\\\addlinespace\n", "", out)
Hao Zhu064990d2017-10-17 18:08:42 -0400168
Hao Zhu5dd3e282018-05-20 18:39:48 -0400169 valign <- switch(
170 valign,
171 top = "\\[t\\]",
172 middle = "",
173 bottom = "\\[b\\]"
174 )
175
Hao Zhuf4b35292017-06-25 22:38:37 -1000176 if (is.null(columns)) {
177 columns <- seq(1, table_info$ncol)
178 }
Hao Zhu064990d2017-10-17 18:08:42 -0400179
Hao Zhuf4b35292017-06-25 22:38:37 -1000180 contents <- table_info$contents
Hao Zhuc9858942020-08-11 21:41:09 -0400181 kable_dt <- kable_dt_latex(contents, col_names)
georgeguieaeb0cd2018-03-30 17:39:46 -0500182
Hao Zhuaa424412020-08-03 09:21:46 -0400183 collapse_matrix_rev <- collapse_row_matrix(kable_dt, columns, html = TRUE,
184 target)
185 collapse_matrix <- collapse_row_matrix(kable_dt, columns, html = FALSE,
186 target)
Hao Zhuf4b35292017-06-25 22:38:37 -1000187
188 new_kable_dt <- kable_dt
Jakob Richteraebd8292018-10-31 16:27:29 +0100189 for (j in seq_along(columns)) {
Hao Zhuf4b35292017-06-25 22:38:37 -1000190 column_align <- table_info$align_vector_origin[columns[j]]
191 column_width <- ifelse(
192 is.null(table_info$column_width[[paste0("column_", columns[j])]]),
193 "*", table_info$column_width[paste0("column_", columns[j])])
194 for (i in seq(1:nrow(collapse_matrix))) {
georgeguieaeb0cd2018-03-30 17:39:46 -0500195 if(row_group_label_position == 'stack'){
Jakob Richteraebd8292018-10-31 16:27:29 +0100196 if(columns[j] < ncol(collapse_matrix) || collapse_matrix_rev[i, j] == 0){
197 new_kable_dt[i, columns[j]] <- ''
georgeguieaeb0cd2018-03-30 17:39:46 -0500198 }
199 } else {
Jakob Richteraebd8292018-10-31 16:27:29 +0100200 new_kable_dt[i, columns[j]] <- collapse_new_dt_item(
201 kable_dt[i, columns[j]], collapse_matrix[i, j], column_width,
Hao Zhu5dd3e282018-05-20 18:39:48 -0400202 align = column_align, valign = valign
georgeguieaeb0cd2018-03-30 17:39:46 -0500203 )
204 }
Hao Zhuf4b35292017-06-25 22:38:37 -1000205 }
206 }
Hao Zhu654c91f2017-07-03 14:03:34 -0400207
208 midrule_matrix <- collapse_row_matrix(kable_dt, seq(1, table_info$ncol),
Hao Zhuaa424412020-08-03 09:21:46 -0400209 html = FALSE, target)
Hao Zhu654c91f2017-07-03 14:03:34 -0400210 midrule_matrix[setdiff(seq(1, table_info$ncol), columns)] <- 1
211
212 ex_bottom <- length(contents) - 1
213 contents[2:ex_bottom] <- paste0(contents[2:ex_bottom], "\\\\\\\\")
214 if (!table_info$booktabs) {
215 contents[2:ex_bottom] <- paste0(contents[2:ex_bottom], "\n\\\\hline")
216 }
Hao Zhu01b15b82018-01-12 17:48:21 -0500217
218 new_contents <- c()
georgeguieaeb0cd2018-03-30 17:39:46 -0500219 if(row_group_label_position == 'stack'){
220 if(is.null(headers_to_remove)) headers_to_remove <- head(columns, -1)
221 table_info$colnames[headers_to_remove] <- ''
222 new_header <- paste(table_info$colnames, collapse = ' & ')
223 out <- sub(contents[1], new_header, out)
224 table_info$contents[1] <- new_header
225 }
226 if(latex_hline == 'custom' & is.null(custom_latex_hline)){
227 if(row_group_label_position == 'stack'){
228 custom_latex_hline = 1:2
229 } else {
230 custom_latex_hline = 1
231 }
232 }
Hao Zhuf4b35292017-06-25 22:38:37 -1000233 for (i in seq(1:nrow(collapse_matrix))) {
234 new_contents[i] <- paste0(new_kable_dt[i, ], collapse = " & ")
Hao Zhu12b0ade2018-01-13 16:19:58 -0500235 table_info$contents[i + 1] <- new_contents[i]
Hao Zhu654c91f2017-07-03 14:03:34 -0400236 if (i != nrow(collapse_matrix)) {
Hao Zhu12b0ade2018-01-13 16:19:58 -0500237 row_midrule <- switch(
238 latex_hline,
239 "none" = "",
Hao Zhu71b30f22020-08-12 22:47:13 -0400240 "full" = ifelse(
241 sum(as.numeric(midrule_matrix[i, ]) > 0) == ncol(midrule_matrix),
242 midline_groups(which(as.numeric(midrule_matrix[i, ]) > 0),
243 table_info$booktabs),
244 midline_groups(which(as.numeric(midrule_matrix[i, ]) > 0),
245 FALSE)
246 ),
Hao Zhu12b0ade2018-01-13 16:19:58 -0500247 "major" = ifelse(
248 sum(as.numeric(midrule_matrix[i, ]) > 0) == ncol(midrule_matrix),
249 midline_groups(which(as.numeric(midrule_matrix[i, ]) > 0),
250 table_info$booktabs),
251 ""
georgeguieaeb0cd2018-03-30 17:39:46 -0500252 ),
253 "custom" = ifelse(
254 sum(as.numeric(midrule_matrix[i, custom_latex_hline])) > 0,
255 midline_groups(which(as.numeric(midrule_matrix[i, ]) > 0),
256 table_info$booktabs),
257 ""
Hao Zhu876bcb02020-08-12 23:02:51 -0400258 ),
259 "linespace"= ifelse(
260 sum(as.numeric(midrule_matrix[i, ]) > 0) == ncol(midrule_matrix),
261 "\\\\addlinespace\n",
262 ""
263 )
Hao Zhu12b0ade2018-01-13 16:19:58 -0500264 )
Hao Zhu654c91f2017-07-03 14:03:34 -0400265 new_contents[i] <- paste0(new_contents[i], "\\\\\\\\\n", row_midrule)
266 }
Hao Zhub3f26ae2020-08-04 00:36:52 -0400267 out <- sub(contents[i + 1], new_contents[i], out, perl=TRUE)
Hao Zhuf4b35292017-06-25 22:38:37 -1000268 }
269
Hao Zhu71b30f22020-08-12 22:47:13 -0400270 if (table_info$tabular == "longtable" & longtable_clean_cut) {
271 if (max(collapse_matrix) > 50) {
272 warning("It seems that you have a group larger than 50 rows and span ",
273 "over a page. You probably want to set longtable_clean_cut to ",
274 "be FALSE.")
275 }
276 if (latex_hline == "full") {
277 warning("kableExtra 1.2 adds a clean_cut feature to provide better page",
278 " breaking in collapse_rows. It only works when latex_hline = ",
279 "'major'. It looks like you have longtable_clean_cut = T while ",
280 "latex_hline = 'full'. Please change either one of them.")
281 }
282 out <- gsub("\\\\\\\\($|\n)", "\\\\\\\\\\\\nopagebreak\\1", out)
283 out <- gsub("(\\\\cmidrule[{][^}]*[}])", "\\1\\\\pagebreak[0]", out)
284 }
Hao Zhuf4b35292017-06-25 22:38:37 -1000285 out <- structure(out, format = "latex", class = "knitr_kable")
286 table_info$collapse_rows <- TRUE
Hao Zhuebdb3c22020-08-12 08:27:38 -0400287 table_info$collapse_matrix <- collapse_matrix
Hao Zhuf4b35292017-06-25 22:38:37 -1000288 attr(out, "kable_meta") <- table_info
georgeguieaeb0cd2018-03-30 17:39:46 -0500289 if(row_group_label_position == 'stack'){
290 group_row_index_list <- collapse_rows_index(kable_dt, head(columns, -1))
291 out <- collapse_rows_latex_stack(out, group_row_index_list, row_group_label_fonts)
292 }
Hao Zhuf4b35292017-06-25 22:38:37 -1000293 return(out)
294}
295
Hao Zhuc9858942020-08-11 21:41:09 -0400296kable_dt_latex <- function(x, col_names) {
297 if (col_names) {
298 x <- x[-1]
299 }
300 data.frame(do.call(rbind, str_split(x, " & ")), stringsAsFactors = FALSE)
Hao Zhuf4b35292017-06-25 22:38:37 -1000301}
302
Hao Zhu5dd3e282018-05-20 18:39:48 -0400303collapse_new_dt_item <- function(x, span, width = NULL, align, valign) {
Hao Zhuf4b35292017-06-25 22:38:37 -1000304 if (span == 0) return("")
305 if (span == 1) return(x)
306 out <- paste0(
Hao Zhu5dd3e282018-05-20 18:39:48 -0400307 "\\\\multirow", valign, "\\{", -span, "\\}\\{",
Hao Zhuf4b35292017-06-25 22:38:37 -1000308 ifelse(is.null(width), "\\*", width),
309 "\\}\\{",
310 switch(align,
311 "l" = "\\\\raggedright\\\\arraybackslash ",
312 "c" = "\\\\centering\\\\arraybackslash ",
313 "r" = "\\\\raggedleft\\\\arraybackslash "),
314 x, "\\}"
315 )
316 return(out)
Hao Zhu2a87e8e2017-06-14 15:49:33 -0400317}
Hao Zhu654c91f2017-07-03 14:03:34 -0400318
319midline_groups <- function(x, booktabs = T) {
320 diffs <- c(1, diff(x))
321 start_indexes <- c(1, which(diffs > 1))
Hao Zhu12b0ade2018-01-13 16:19:58 -0500322 end_indexes <- c(start_indexes - 1, length(x))
Hao Zhu654c91f2017-07-03 14:03:34 -0400323 ranges <- paste0(x[start_indexes], "-", x[end_indexes])
324 if (booktabs) {
325 out <- paste0("\\\\cmidrule{", ranges, "}")
326 } else {
327 out <- paste0("\\\\cline{", ranges, "}")
328 }
329 out <- paste0(out, collapse = "\n")
330 return(out)
331}
georgeguieaeb0cd2018-03-30 17:39:46 -0500332
Hao Zhu876bcb02020-08-12 23:02:51 -0400333linespace_groups <- function(x) {
334 diffs <- c(1, diff(x))
335 start_indexes <- c(1, which(diffs > 1))
336 end_indexes <- c(start_indexes - 1, length(x))
337 ranges <- paste0(x[start_indexes], "-", x[end_indexes])
338 out <- paste0("\\\\addlinespace")
339 out <- paste0(out, collapse = "\n")
340 return(out)
341}
342
georgeguieaeb0cd2018-03-30 17:39:46 -0500343
344collapse_rows_index <- function(kable_dt, columns) {
345 format_to_row_index <- function(x){
346 x = rle(x)
347 out = x$lengths
348 names(out) = x$values
349 out
350 }
351 group_rows_index_list <- lapply(columns, function(x) {
352 format_to_row_index(kable_dt[, x])
353 })
354 return(group_rows_index_list)
355}
356
357
358collapse_rows_latex_stack <- function(kable_input, group_row_index_list,
359 row_group_label_fonts){
360 merge_lists <- function(default_list, updated_list){
361 for(x in names(updated_list)){
362 default_list[[x]] <- updated_list[[x]]
363 }
364 return(default_list)
365 }
366 default_font_list <- list(
367 list(bold = T, italic = F),
368 list(bold = F, italic = T),
369 list(bold = F, italic = F)
370 )
371 n_default_fonts = length(default_font_list)
372 n_supplied_fonts = length(row_group_label_fonts)
373 group_row_font_list <- list()
374 out <- kable_input
375 for(i in 1:length(group_row_index_list)){
376 if(i > n_default_fonts){
377 group_row_args <- default_font_list[[n_default_fonts]]
378 } else {
379 group_row_args <- default_font_list[[i]]
380 }
381 if(i <= n_supplied_fonts){
382 group_row_args <- merge_lists(group_row_args, row_group_label_fonts[[i]])
383 }
384 group_row_args <- merge_lists(
385 list(kable_input = out, index = group_row_index_list[[i]]),
386 group_row_args)
387 out <- do.call(group_rows, group_row_args)
388 }
389 return(out)
390}