blob: 9feb93dfa81bbb41ad5ffa33f982fe40c1101d96 [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
10#' @param columns Numeric column positions where rows need to be collapsed.
Hao Zhu12b0ade2018-01-13 16:19:58 -050011#' @param latex_hline Option controlling the behavior of adding hlines to table.
12#' Choose from `full`, `major`, `none`.
Hao Zhu8a160b12017-06-26 13:41:35 -100013#'
Hao Zhu5a7689e2017-06-26 15:37:24 -100014#' @examples dt <- data.frame(a = c(1, 1, 2, 2), b = c("a", "a", "a", "b"))
15#' x <- knitr::kable(dt, "html")
16#' collapse_rows(x)
17#'
Hao Zhuf4b35292017-06-25 22:38:37 -100018#' @export
Hao Zhu12b0ade2018-01-13 16:19:58 -050019collapse_rows <- function(kable_input, columns = NULL,
20 latex_hline = c("full", "major", "none")) {
Hao Zhuf4b35292017-06-25 22:38:37 -100021 # if (is.null(columns)) {
22 # stop("Please specify numeric positions of columns you want to collapse.")
23 # }
Hao Zhu2a87e8e2017-06-14 15:49:33 -040024 kable_format <- attr(kable_input, "format")
25 if (!kable_format %in% c("html", "latex")) {
Hao Zhu401ebd82018-01-14 17:10:20 -050026 warning("Please specify format in kable. kableExtra can customize either ",
27 "HTML or LaTeX outputs. See https://haozhu233.github.io/kableExtra/ ",
28 "for details.")
Hao Zhu2a87e8e2017-06-14 15:49:33 -040029 return(kable_input)
30 }
31 if (kable_format == "html") {
32 return(collapse_rows_html(kable_input, columns))
33 }
34 if (kable_format == "latex") {
Hao Zhu12b0ade2018-01-13 16:19:58 -050035 latex_hline <- match.arg(latex_hline, c("full", "major", "none"))
36 return(collapse_rows_latex(kable_input, columns, latex_hline))
Hao Zhu2a87e8e2017-06-14 15:49:33 -040037 }
38}
39
40collapse_rows_html <- function(kable_input, columns) {
41 kable_attrs <- attributes(kable_input)
Hao Zhu558c72f2017-07-24 15:12:00 -040042 kable_xml <- read_kable_as_xml(kable_input)
Hao Zhu2a87e8e2017-06-14 15:49:33 -040043 kable_tbody <- xml_tpart(kable_xml, "tbody")
44
45 kable_dt <- rvest::html_table(xml2::read_html(as.character(kable_input)))[[1]]
Hao Zhuf4b35292017-06-25 22:38:37 -100046 if (is.null(columns)) {
47 columns <- seq(1, ncol(kable_dt))
48 }
Hao Zhu2a87e8e2017-06-14 15:49:33 -040049 kable_dt$row_id <- rownames(kable_dt)
50 collapse_matrix <- collapse_row_matrix(kable_dt, columns)
51
52 for (i in 1:nrow(collapse_matrix)) {
53 matrix_row <- collapse_matrix[i, ]
Hao Zhu38cdcdb2017-06-27 09:08:30 -100054 names(matrix_row) <- names(collapse_matrix)
Hao Zhu3166f062017-06-26 07:51:46 -100055 target_row <- xml_child(kable_tbody, i)
56 row_node_rm_count <- 0
57 for (j in 1:length(matrix_row)) {
58 collapsing_col <- as.numeric(sub("x", "", names(matrix_row)[j])) -
59 row_node_rm_count
60 target_cell <- xml_child(target_row, collapsing_col)
61 if (matrix_row[j] == 0) {
62 xml_remove(target_cell)
63 row_node_rm_count <- row_node_rm_count + 1
64 } else if (matrix_row[j] != 1) {
65 xml_attr(target_cell, "rowspan") <- matrix_row[j]
66 xml_attr(target_cell, "style") <- paste0(
67 xml_attr(target_cell, "style"),
68 "vertical-align: middle !important;")
Hao Zhu2a87e8e2017-06-14 15:49:33 -040069 }
70 }
71 }
72
Hao Zhuf2dfd142017-07-24 14:43:28 -040073 out <- as_kable_xml(kable_xml)
Hao Zhu2a87e8e2017-06-14 15:49:33 -040074 attributes(out) <- kable_attrs
Hao Zhuf2100832018-01-11 16:20:29 -050075 if (!"kableExtra" %in% class(out)) class(out) <- c("kableExtra", class(out))
Hao Zhu2a87e8e2017-06-14 15:49:33 -040076 return(out)
77}
78
Hao Zhuf4b35292017-06-25 22:38:37 -100079collapse_row_matrix <- function(kable_dt, columns, html = T) {
80 if (html) {
81 column_block <- function(x) c(x, rep(0, x - 1))
82 } else {
83 column_block <- function(x) c(rep(0, x - 1), x)
84 }
85 mapping_matrix <- list()
86 for (i in columns) {
87 mapping_matrix[[paste0("x", i)]] <- unlist(lapply(
88 rle(kable_dt[, i])$length, column_block))
89 }
90 mapping_matrix <- data.frame(mapping_matrix)
91 return(mapping_matrix)
92}
93
Hao Zhu12b0ade2018-01-13 16:19:58 -050094collapse_rows_latex <- function(kable_input, columns, latex_hline) {
Hao Zhuf4b35292017-06-25 22:38:37 -100095 table_info <- magic_mirror(kable_input)
Hao Zhu064990d2017-10-17 18:08:42 -040096 out <- enc2utf8(as.character(kable_input))
97
Hao Zhuf4b35292017-06-25 22:38:37 -100098 if (is.null(columns)) {
99 columns <- seq(1, table_info$ncol)
100 }
Hao Zhu064990d2017-10-17 18:08:42 -0400101
Hao Zhuf4b35292017-06-25 22:38:37 -1000102 contents <- table_info$contents
103 kable_dt <- kable_dt_latex(contents)
Hao Zhu01b15b82018-01-12 17:48:21 -0500104 collapse_matrix <- collapse_row_matrix(kable_dt, columns, html = FALSE)
Hao Zhuf4b35292017-06-25 22:38:37 -1000105
106 new_kable_dt <- kable_dt
Hao Zhuf4b35292017-06-25 22:38:37 -1000107 for (j in seq(1:ncol(collapse_matrix))) {
108 column_align <- table_info$align_vector_origin[columns[j]]
109 column_width <- ifelse(
110 is.null(table_info$column_width[[paste0("column_", columns[j])]]),
111 "*", table_info$column_width[paste0("column_", columns[j])])
112 for (i in seq(1:nrow(collapse_matrix))) {
113 new_kable_dt[i, j] <- collapse_new_dt_item(
114 kable_dt[i, j], collapse_matrix[i, j], column_width, align = column_align
115 )
116 }
117 }
Hao Zhu654c91f2017-07-03 14:03:34 -0400118
119 midrule_matrix <- collapse_row_matrix(kable_dt, seq(1, table_info$ncol),
120 html = F)
121 midrule_matrix[setdiff(seq(1, table_info$ncol), columns)] <- 1
122
123 ex_bottom <- length(contents) - 1
124 contents[2:ex_bottom] <- paste0(contents[2:ex_bottom], "\\\\\\\\")
125 if (!table_info$booktabs) {
126 contents[2:ex_bottom] <- paste0(contents[2:ex_bottom], "\n\\\\hline")
127 }
Hao Zhu01b15b82018-01-12 17:48:21 -0500128
129 new_contents <- c()
Hao Zhuf4b35292017-06-25 22:38:37 -1000130 for (i in seq(1:nrow(collapse_matrix))) {
131 new_contents[i] <- paste0(new_kable_dt[i, ], collapse = " & ")
Hao Zhu12b0ade2018-01-13 16:19:58 -0500132 table_info$contents[i + 1] <- new_contents[i]
Hao Zhu654c91f2017-07-03 14:03:34 -0400133 if (i != nrow(collapse_matrix)) {
Hao Zhu12b0ade2018-01-13 16:19:58 -0500134 row_midrule <- switch(
135 latex_hline,
136 "none" = "",
137 "full" = midline_groups(which(as.numeric(midrule_matrix[i, ]) > 0),
138 table_info$booktabs),
139 "major" = ifelse(
140 sum(as.numeric(midrule_matrix[i, ]) > 0) == ncol(midrule_matrix),
141 midline_groups(which(as.numeric(midrule_matrix[i, ]) > 0),
142 table_info$booktabs),
143 ""
144 )
145 )
Hao Zhu654c91f2017-07-03 14:03:34 -0400146 new_contents[i] <- paste0(new_contents[i], "\\\\\\\\\n", row_midrule)
147 }
Hao Zhuf4b35292017-06-25 22:38:37 -1000148 out <- sub(contents[i + 1], new_contents[i], out)
149 }
Hao Zhu8f202992017-07-15 02:20:18 -0400150 out <- gsub("\\\\addlinespace\n", "", out)
Hao Zhuf4b35292017-06-25 22:38:37 -1000151
152 out <- structure(out, format = "latex", class = "knitr_kable")
153 table_info$collapse_rows <- TRUE
154 attr(out, "kable_meta") <- table_info
155 return(out)
156}
157
158kable_dt_latex <- function(x) {
159 data.frame(do.call(rbind, str_split(x[-1], " & ")), stringsAsFactors = FALSE)
160}
161
162collapse_new_dt_item <- function(x, span, width = NULL, align) {
163 if (span == 0) return("")
164 if (span == 1) return(x)
165 out <- paste0(
166 "\\\\multirow\\{", -span, "\\}\\{",
167 ifelse(is.null(width), "\\*", width),
168 "\\}\\{",
169 switch(align,
170 "l" = "\\\\raggedright\\\\arraybackslash ",
171 "c" = "\\\\centering\\\\arraybackslash ",
172 "r" = "\\\\raggedleft\\\\arraybackslash "),
173 x, "\\}"
174 )
175 return(out)
Hao Zhu2a87e8e2017-06-14 15:49:33 -0400176}
Hao Zhu654c91f2017-07-03 14:03:34 -0400177
178midline_groups <- function(x, booktabs = T) {
179 diffs <- c(1, diff(x))
180 start_indexes <- c(1, which(diffs > 1))
Hao Zhu12b0ade2018-01-13 16:19:58 -0500181 end_indexes <- c(start_indexes - 1, length(x))
Hao Zhu654c91f2017-07-03 14:03:34 -0400182 ranges <- paste0(x[start_indexes], "-", x[end_indexes])
183 if (booktabs) {
184 out <- paste0("\\\\cmidrule{", ranges, "}")
185 } else {
186 out <- paste0("\\\\cline{", ranges, "}")
187 }
188 out <- paste0(out, collapse = "\n")
189 return(out)
190}