blob: 298c26f78c8ab7f099dff28248b98ce34cf2ede2 [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 Zhuf4b35292017-06-25 22:38:37 -100088 if (is.null(columns)) {
89 columns <- seq(1, ncol(kable_dt))
90 }
Hao Zhu5e2528e2020-08-03 09:16:34 -040091 if (!is.null(target)) {
92 if (!target %in% columns) {
93 stop("target has to be within the range of columns")
94 }
95 }
Hao Zhu23456762018-03-26 12:30:10 -040096 if (!is.null(kable_attrs$header_above)) {
97 kable_dt_col_names <- unlist(kable_dt[kable_attrs$header_above, ])
98 kable_dt <- kable_dt[-(1:kable_attrs$header_above),]
99 names(kable_dt) <- kable_dt_col_names
100 }
Hao Zhu5e2528e2020-08-03 09:16:34 -0400101 collapse_matrix <- collapse_row_matrix(kable_dt, columns, target = target)
Hao Zhu2a87e8e2017-06-14 15:49:33 -0400102
103 for (i in 1:nrow(collapse_matrix)) {
104 matrix_row <- collapse_matrix[i, ]
Hao Zhu38cdcdb2017-06-27 09:08:30 -1000105 names(matrix_row) <- names(collapse_matrix)
Hao Zhu3166f062017-06-26 07:51:46 -1000106 target_row <- xml_child(kable_tbody, i)
107 row_node_rm_count <- 0
108 for (j in 1:length(matrix_row)) {
109 collapsing_col <- as.numeric(sub("x", "", names(matrix_row)[j])) -
110 row_node_rm_count
111 target_cell <- xml_child(target_row, collapsing_col)
112 if (matrix_row[j] == 0) {
113 xml_remove(target_cell)
114 row_node_rm_count <- row_node_rm_count + 1
115 } else if (matrix_row[j] != 1) {
116 xml_attr(target_cell, "rowspan") <- matrix_row[j]
117 xml_attr(target_cell, "style") <- paste0(
118 xml_attr(target_cell, "style"),
Hao Zhu5dd3e282018-05-20 18:39:48 -0400119 "vertical-align: ", valign, " !important;")
Hao Zhu2a87e8e2017-06-14 15:49:33 -0400120 }
121 }
122 }
123
Hao Zhuf2dfd142017-07-24 14:43:28 -0400124 out <- as_kable_xml(kable_xml)
Hao Zhufdff6f42020-08-09 14:38:10 -0400125 kable_attrs$collapse_matrix <- collapse_matrix
Hao Zhu2a87e8e2017-06-14 15:49:33 -0400126 attributes(out) <- kable_attrs
Hao Zhuf2100832018-01-11 16:20:29 -0500127 if (!"kableExtra" %in% class(out)) class(out) <- c("kableExtra", class(out))
Hao Zhu2a87e8e2017-06-14 15:49:33 -0400128 return(out)
129}
130
Hao Zhu5e2528e2020-08-03 09:16:34 -0400131split_factor <- function(x) {
132 group_idx <- seq(1, length(x))
133 return(factor(unlist(lapply(group_idx, function(i) {rep(i, x[i])}))))
134}
135
136collapse_row_matrix <- function(kable_dt, columns, html = T, target = NULL) {
Hao Zhuf4b35292017-06-25 22:38:37 -1000137 if (html) {
138 column_block <- function(x) c(x, rep(0, x - 1))
139 } else {
140 column_block <- function(x) c(rep(0, x - 1), x)
141 }
142 mapping_matrix <- list()
Hao Zhu5e2528e2020-08-03 09:16:34 -0400143 if (is.null(target)) {
144 for (i in columns) {
145 mapping_matrix[[paste0("x", i)]] <- unlist(lapply(
146 rle(kable_dt[, i])$lengths, column_block))
147 }
148 } else {
149 target_group = split_factor(rle(kable_dt[, target])$lengths)
150 for (i in columns) {
151 column_split = split(kable_dt[, i], target_group)
152 mapping_matrix[[paste0("x", i)]] <- unlist(lapply(
153 column_split, function(sp) {
154 lapply(rle(sp)$length, column_block)
155 }))
156 }
Hao Zhuf4b35292017-06-25 22:38:37 -1000157 }
Hao Zhu5e2528e2020-08-03 09:16:34 -0400158
Hao Zhuf4b35292017-06-25 22:38:37 -1000159 mapping_matrix <- data.frame(mapping_matrix)
160 return(mapping_matrix)
161}
162
Hao Zhu5dd3e282018-05-20 18:39:48 -0400163collapse_rows_latex <- function(kable_input, columns, latex_hline, valign,
georgeguieaeb0cd2018-03-30 17:39:46 -0500164 row_group_label_position, row_group_label_fonts,
Hao Zhuc9858942020-08-11 21:41:09 -0400165 custom_latex_hline, headers_to_remove, target,
Hao Zhu71b30f22020-08-12 22:47:13 -0400166 col_names, longtable_clean_cut) {
Hao Zhuf4b35292017-06-25 22:38:37 -1000167 table_info <- magic_mirror(kable_input)
Hao Zhu3fc0e882018-04-03 16:06:41 -0400168 out <- solve_enc(kable_input)
Hao Zhu876bcb02020-08-12 23:02:51 -0400169 out <- gsub("\\\\addlinespace\n", "", out)
Hao Zhu064990d2017-10-17 18:08:42 -0400170
Hao Zhu5dd3e282018-05-20 18:39:48 -0400171 valign <- switch(
172 valign,
173 top = "\\[t\\]",
174 middle = "",
175 bottom = "\\[b\\]"
176 )
177
Hao Zhuf4b35292017-06-25 22:38:37 -1000178 if (is.null(columns)) {
179 columns <- seq(1, table_info$ncol)
180 }
Hao Zhu064990d2017-10-17 18:08:42 -0400181
Hao Zhuf4b35292017-06-25 22:38:37 -1000182 contents <- table_info$contents
Hao Zhuc9858942020-08-11 21:41:09 -0400183 kable_dt <- kable_dt_latex(contents, col_names)
georgeguieaeb0cd2018-03-30 17:39:46 -0500184
Hao Zhuaa424412020-08-03 09:21:46 -0400185 collapse_matrix_rev <- collapse_row_matrix(kable_dt, columns, html = TRUE,
186 target)
187 collapse_matrix <- collapse_row_matrix(kable_dt, columns, html = FALSE,
188 target)
Hao Zhuf4b35292017-06-25 22:38:37 -1000189
190 new_kable_dt <- kable_dt
Jakob Richteraebd8292018-10-31 16:27:29 +0100191 for (j in seq_along(columns)) {
Hao Zhuf4b35292017-06-25 22:38:37 -1000192 column_align <- table_info$align_vector_origin[columns[j]]
193 column_width <- ifelse(
194 is.null(table_info$column_width[[paste0("column_", columns[j])]]),
Hao Zhu4e34cd82020-08-19 01:54:23 -0400195 "\\*", table_info$column_width[paste0("column_", columns[j])])
Hao Zhuf4b35292017-06-25 22:38:37 -1000196 for (i in seq(1:nrow(collapse_matrix))) {
georgeguieaeb0cd2018-03-30 17:39:46 -0500197 if(row_group_label_position == 'stack'){
Jakob Richteraebd8292018-10-31 16:27:29 +0100198 if(columns[j] < ncol(collapse_matrix) || collapse_matrix_rev[i, j] == 0){
199 new_kable_dt[i, columns[j]] <- ''
georgeguieaeb0cd2018-03-30 17:39:46 -0500200 }
201 } else {
Jakob Richteraebd8292018-10-31 16:27:29 +0100202 new_kable_dt[i, columns[j]] <- collapse_new_dt_item(
203 kable_dt[i, columns[j]], collapse_matrix[i, j], column_width,
Hao Zhu5dd3e282018-05-20 18:39:48 -0400204 align = column_align, valign = valign
georgeguieaeb0cd2018-03-30 17:39:46 -0500205 )
206 }
Hao Zhuf4b35292017-06-25 22:38:37 -1000207 }
208 }
Hao Zhu654c91f2017-07-03 14:03:34 -0400209
210 midrule_matrix <- collapse_row_matrix(kable_dt, seq(1, table_info$ncol),
Hao Zhuaa424412020-08-03 09:21:46 -0400211 html = FALSE, target)
Hao Zhu654c91f2017-07-03 14:03:34 -0400212 midrule_matrix[setdiff(seq(1, table_info$ncol), columns)] <- 1
213
214 ex_bottom <- length(contents) - 1
215 contents[2:ex_bottom] <- paste0(contents[2:ex_bottom], "\\\\\\\\")
216 if (!table_info$booktabs) {
217 contents[2:ex_bottom] <- paste0(contents[2:ex_bottom], "\n\\\\hline")
218 }
Hao Zhu01b15b82018-01-12 17:48:21 -0500219
220 new_contents <- c()
georgeguieaeb0cd2018-03-30 17:39:46 -0500221 if(row_group_label_position == 'stack'){
222 if(is.null(headers_to_remove)) headers_to_remove <- head(columns, -1)
223 table_info$colnames[headers_to_remove] <- ''
224 new_header <- paste(table_info$colnames, collapse = ' & ')
225 out <- sub(contents[1], new_header, out)
226 table_info$contents[1] <- new_header
227 }
228 if(latex_hline == 'custom' & is.null(custom_latex_hline)){
229 if(row_group_label_position == 'stack'){
230 custom_latex_hline = 1:2
231 } else {
232 custom_latex_hline = 1
233 }
234 }
Hao Zhud0f7c8a2020-08-20 01:17:23 -0400235
236 if (table_info$tabular == "longtable" & longtable_clean_cut) {
237 if (max(collapse_matrix) > 50) {
238 warning("It seems that you have a group larger than 50 rows and span ",
239 "over a page. You probably want to set longtable_clean_cut to ",
240 "be FALSE.")
241 }
242 pagebreak_hint <- "\\\\pagebreak[0]"
243 nopagebreak <- "\\\\nopagebreak"
244 # out <- gsub("\\\\\\\\($|\n)", "\\\\\\\\\\\\nopagebreak\\1", out)
245 # out <- gsub("(\\\\cmidrule[{][^}]*[}])", "\\1\\\\pagebreak[0]", out)
246 } else {
247 pagebreak_hint <- ""
248 nopagebreak <- ""
249 }
250
Hao Zhuf4b35292017-06-25 22:38:37 -1000251 for (i in seq(1:nrow(collapse_matrix))) {
252 new_contents[i] <- paste0(new_kable_dt[i, ], collapse = " & ")
Hao Zhu12b0ade2018-01-13 16:19:58 -0500253 table_info$contents[i + 1] <- new_contents[i]
Hao Zhu654c91f2017-07-03 14:03:34 -0400254 if (i != nrow(collapse_matrix)) {
Hao Zhu12b0ade2018-01-13 16:19:58 -0500255 row_midrule <- switch(
256 latex_hline,
257 "none" = "",
Hao Zhud0f7c8a2020-08-20 01:17:23 -0400258 "full" = paste0(
Hao Zhu71b30f22020-08-12 22:47:13 -0400259 midline_groups(which(as.numeric(midrule_matrix[i, ]) > 0),
260 table_info$booktabs),
Hao Zhud0f7c8a2020-08-20 01:17:23 -0400261 ifelse(
262 sum(as.numeric(midrule_matrix[i, ]) > 0) == ncol(midrule_matrix),
263 pagebreak_hint, nopagebreak
264 )
Hao Zhu71b30f22020-08-12 22:47:13 -0400265 ),
Hao Zhu12b0ade2018-01-13 16:19:58 -0500266 "major" = ifelse(
267 sum(as.numeric(midrule_matrix[i, ]) > 0) == ncol(midrule_matrix),
Hao Zhud0f7c8a2020-08-20 01:17:23 -0400268 paste0(midline_groups(which(as.numeric(midrule_matrix[i, ]) > 0),
269 table_info$booktabs), pagebreak_hint),
270 nopagebreak
georgeguieaeb0cd2018-03-30 17:39:46 -0500271 ),
272 "custom" = ifelse(
273 sum(as.numeric(midrule_matrix[i, custom_latex_hline])) > 0,
274 midline_groups(which(as.numeric(midrule_matrix[i, ]) > 0),
275 table_info$booktabs),
276 ""
Hao Zhu876bcb02020-08-12 23:02:51 -0400277 ),
278 "linespace"= ifelse(
279 sum(as.numeric(midrule_matrix[i, ]) > 0) == ncol(midrule_matrix),
Hao Zhud0f7c8a2020-08-20 01:17:23 -0400280 "\\\\addlinespace",
Hao Zhu876bcb02020-08-12 23:02:51 -0400281 ""
282 )
Hao Zhu12b0ade2018-01-13 16:19:58 -0500283 )
Hao Zhu654c91f2017-07-03 14:03:34 -0400284 new_contents[i] <- paste0(new_contents[i], "\\\\\\\\\n", row_midrule)
285 }
Hao Zhub3f26ae2020-08-04 00:36:52 -0400286 out <- sub(contents[i + 1], new_contents[i], out, perl=TRUE)
Hao Zhuf4b35292017-06-25 22:38:37 -1000287 }
Hao Zhuf4b35292017-06-25 22:38:37 -1000288 out <- structure(out, format = "latex", class = "knitr_kable")
289 table_info$collapse_rows <- TRUE
Hao Zhuebdb3c22020-08-12 08:27:38 -0400290 table_info$collapse_matrix <- collapse_matrix
Hao Zhuf4b35292017-06-25 22:38:37 -1000291 attr(out, "kable_meta") <- table_info
georgeguieaeb0cd2018-03-30 17:39:46 -0500292 if(row_group_label_position == 'stack'){
293 group_row_index_list <- collapse_rows_index(kable_dt, head(columns, -1))
294 out <- collapse_rows_latex_stack(out, group_row_index_list, row_group_label_fonts)
295 }
Hao Zhuf4b35292017-06-25 22:38:37 -1000296 return(out)
297}
298
Hao Zhuc9858942020-08-11 21:41:09 -0400299kable_dt_latex <- function(x, col_names) {
300 if (col_names) {
301 x <- x[-1]
302 }
303 data.frame(do.call(rbind, str_split(x, " & ")), stringsAsFactors = FALSE)
Hao Zhuf4b35292017-06-25 22:38:37 -1000304}
305
Hao Zhu5dd3e282018-05-20 18:39:48 -0400306collapse_new_dt_item <- function(x, span, width = NULL, align, valign) {
Hao Zhuf4b35292017-06-25 22:38:37 -1000307 if (span == 0) return("")
308 if (span == 1) return(x)
309 out <- paste0(
Hao Zhu5dd3e282018-05-20 18:39:48 -0400310 "\\\\multirow", valign, "\\{", -span, "\\}\\{",
Hao Zhuf4b35292017-06-25 22:38:37 -1000311 ifelse(is.null(width), "\\*", width),
312 "\\}\\{",
313 switch(align,
314 "l" = "\\\\raggedright\\\\arraybackslash ",
315 "c" = "\\\\centering\\\\arraybackslash ",
316 "r" = "\\\\raggedleft\\\\arraybackslash "),
317 x, "\\}"
318 )
319 return(out)
Hao Zhu2a87e8e2017-06-14 15:49:33 -0400320}
Hao Zhu654c91f2017-07-03 14:03:34 -0400321
322midline_groups <- function(x, booktabs = T) {
323 diffs <- c(1, diff(x))
324 start_indexes <- c(1, which(diffs > 1))
Hao Zhu12b0ade2018-01-13 16:19:58 -0500325 end_indexes <- c(start_indexes - 1, length(x))
Hao Zhu654c91f2017-07-03 14:03:34 -0400326 ranges <- paste0(x[start_indexes], "-", x[end_indexes])
327 if (booktabs) {
328 out <- paste0("\\\\cmidrule{", ranges, "}")
329 } else {
330 out <- paste0("\\\\cline{", ranges, "}")
331 }
332 out <- paste0(out, collapse = "\n")
333 return(out)
334}
georgeguieaeb0cd2018-03-30 17:39:46 -0500335
Hao Zhu876bcb02020-08-12 23:02:51 -0400336linespace_groups <- function(x) {
337 diffs <- c(1, diff(x))
338 start_indexes <- c(1, which(diffs > 1))
339 end_indexes <- c(start_indexes - 1, length(x))
340 ranges <- paste0(x[start_indexes], "-", x[end_indexes])
341 out <- paste0("\\\\addlinespace")
342 out <- paste0(out, collapse = "\n")
343 return(out)
344}
345
georgeguieaeb0cd2018-03-30 17:39:46 -0500346
347collapse_rows_index <- function(kable_dt, columns) {
348 format_to_row_index <- function(x){
349 x = rle(x)
350 out = x$lengths
351 names(out) = x$values
352 out
353 }
354 group_rows_index_list <- lapply(columns, function(x) {
355 format_to_row_index(kable_dt[, x])
356 })
357 return(group_rows_index_list)
358}
359
360
361collapse_rows_latex_stack <- function(kable_input, group_row_index_list,
362 row_group_label_fonts){
363 merge_lists <- function(default_list, updated_list){
364 for(x in names(updated_list)){
365 default_list[[x]] <- updated_list[[x]]
366 }
367 return(default_list)
368 }
369 default_font_list <- list(
370 list(bold = T, italic = F),
371 list(bold = F, italic = T),
372 list(bold = F, italic = F)
373 )
374 n_default_fonts = length(default_font_list)
375 n_supplied_fonts = length(row_group_label_fonts)
376 group_row_font_list <- list()
377 out <- kable_input
378 for(i in 1:length(group_row_index_list)){
379 if(i > n_default_fonts){
380 group_row_args <- default_font_list[[n_default_fonts]]
381 } else {
382 group_row_args <- default_font_list[[i]]
383 }
384 if(i <= n_supplied_fonts){
385 group_row_args <- merge_lists(group_row_args, row_group_label_fonts[[i]])
386 }
387 group_row_args <- merge_lists(
Hao Zhu718fa3f2020-08-19 08:23:28 -0400388 list(kable_input = out, index = group_row_index_list[[i]], escape = FALSE),
georgeguieaeb0cd2018-03-30 17:39:46 -0500389 group_row_args)
390 out <- do.call(group_rows, group_row_args)
391 }
392 return(out)
393}