blob: 409722bf7385175bd00994ff6250e4ef8c0c97eb [file] [log] [blame]
Hao Zhuf7994dd2017-02-27 16:58:42 -05001#' Add a header row on top of current header
2#'
3#' @description Tables with multiple rows of header rows are extremely useful
4#' to demonstrate grouped data. This function takes the output of a `kable()`
Hao Zhue7c8f702017-10-10 13:22:59 -04005#' function and adds an header row on top of it.
Hao Zhuf7994dd2017-02-27 16:58:42 -05006#'
7#' @param kable_input Output of `knitr::kable()` with `format` specified
8#' @param header A (named) character vector with `colspan` as values. For
9#' example, `c(" " = 1, "title" = 2)` can be used to create a new header row
10#' for a 3-column table with "title" spanning across column 2 and 3. For
11#' convenience, when `colspan` equals to 1, users can drop the ` = 1` part.
12#' As a result, `c(" ", "title" = 2)` is the same as `c(" " = 1, "title" = 2)`.
jokorna00ad662019-11-07 21:11:19 +010013#' Alternatively, a data frame with two columns can be provided: The first
Hao Zhu7012cd02020-08-09 15:40:50 -040014#' column should contain the header names (character vector) and the second
jokorna00ad662019-11-07 21:11:19 +010015#' column should contain the colspan (numeric vector). This input can be used
16#' if there are problems with unicode characters in the headers.
Hao Zhu32f43f72017-06-20 18:24:54 -040017#' @param bold A T/F value to control whether the text should be bolded.
18#' @param italic A T/F value to control whether the text should to be emphasized.
Hao Zhuac7e70f2017-08-02 00:18:36 -040019#' @param monospace A T/F value to control whether the text of the selected column
20#' need to be monospaced (verbatim)
Hao Zhu76f0eb62018-09-15 12:38:33 -040021#' @param underline A T/F value to control whether the text of the selected row
22#' need to be underlined
23#' @param strikeout A T/F value to control whether the text of the selected row
24#' need to be stricked out.
Hao Zhu3465b502018-04-02 22:41:46 -040025#' @param align A character string for cell alignment. For HTML, possible values could
26#' be `l`, `c`, `r` plus `left`, `center`, `right`, `justify`, `initial` and `inherit`
27#' while for LaTeX, you can only choose from `l`, `c` & `r`.
Hao Zhu76f0eb62018-09-15 12:38:33 -040028#' @param color A character string/vector for text color. Here please pay
29#' attention to the differences in color codes between HTML and LaTeX.
30#' @param background A character string/vector for background color. Here please
31#' pay attention to the differences in color codes between HTML and LaTeX. Also
32#' note that in HTML, background defined in cell_spec won't cover the whole
33#' cell.
34#' @param font_size A numeric input/vector for font size. For HTML, you can also use
35#' options including `xx-small`, `x-small`, `small`, `medium`, `large`,
36#' `x-large`, `xx-large`, `smaller`, `larger`, `initial` and `inherit`.
37#' @param angle 0-360, degree that the text will rotate.
Hao Zhuac7e70f2017-08-02 00:18:36 -040038#' @param escape A T/F value showing whether special characters should be
39#' escaped.
Salzer6bc84f82018-02-11 13:18:01 -050040#' @param line A T/F value to control whether a line will appear underneath the
41#' header
Hao Zhub548aac2018-09-18 13:29:01 -040042#' @param line_sep A numeric value indicating how much the midlines should be
43#' separated by space. Default is 3.
Hao Zhu6d68f7c2018-09-15 12:44:15 -040044#' @param extra_css An HTML only option. CSS defined here will be send to the
45#' td cell.
Hao Zhuf64f4752018-10-23 10:35:16 -040046#' @param include_empty Whether empty cells in HTML should also be styled.
47#' Default is FALSE.
Hao Zhu8b2126e2019-04-16 17:58:01 -040048#' @param border_left T/F option for border on the left side in latex.
49#' @param border_right T/F option for border on the right side in latex.
Hao Zhuf7994dd2017-02-27 16:58:42 -050050#'
Hao Zhu78e61222017-05-24 20:53:35 -040051#' @examples x <- knitr::kable(head(mtcars), "html")
52#' # Add a row of header with 3 columns on the top of the table. The column
53#' # span for the 2nd and 3rd one are 5 & 6.
54#' add_header_above(x, c(" ", "Group 1" = 5, "Group 2" = 6))
55#'
Hao Zhuc1f38412017-02-23 12:13:48 -050056#' @export
Hao Zhuac7e70f2017-08-02 00:18:36 -040057add_header_above <- function(kable_input, header = NULL,
Hao Zhu76f0eb62018-09-15 12:38:33 -040058 bold = FALSE, italic = FALSE, monospace = FALSE,
59 underline = FALSE, strikeout = FALSE,
60 align = "c", color = NULL, background = NULL,
61 font_size = NULL, angle = NULL,
Hao Zhub548aac2018-09-18 13:29:01 -040062 escape = TRUE, line = TRUE, line_sep = 3,
Hao Zhu8b2126e2019-04-16 17:58:01 -040063 extra_css = NULL, include_empty = FALSE,
64 border_left = FALSE, border_right = FALSE) {
Hao Zhuc1f38412017-02-23 12:13:48 -050065 kable_format <- attr(kable_input, "format")
66 if (!kable_format %in% c("html", "latex")) {
Hao Zhu401ebd82018-01-14 17:10:20 -050067 warning("Please specify format in kable. kableExtra can customize either ",
Hao Zhu76f0eb62018-09-15 12:38:33 -040068 "HTML or LaTeX outputs. See https://haozhu233.github.io/kableExtra/ ",
69 "for details.")
Hao Zhu401ebd82018-01-14 17:10:20 -050070 return(kable_input)
Hao Zhuc1f38412017-02-23 12:13:48 -050071 }
Hao Zhu7012cd02020-08-09 15:40:50 -040072 if (is.null(header)) return(kable_input)
73 if (is.data.frame(header)){
74 if(ncol(header) == 2 & is.character(header[[1]]) & is.numeric(header[[2]])){
75 header <- data.frame(header = header[[1]], colspan = header[[2]],
76 stringsAsFactors = FALSE)
77 }
78 else {
79 stop("If header input is provided as a data frame instead of a named",
80 "vector it must consist of only two columns: ",
81 "The first should be a character vector with ",
82 "header names and the second should be a numeric vector with ",
83 "the number of columns the header should span.")
84 }
85 }
86 else {
87 header <- standardize_header_input(header)
88 }
Hao Zhuc1f38412017-02-23 12:13:48 -050089 if (kable_format == "html") {
Hao Zhuf64f4752018-10-23 10:35:16 -040090 return(htmlTable_add_header_above(
91 kable_input, header, bold, italic, monospace, underline, strikeout,
92 align, color, background, font_size, angle, escape, line, line_sep,
93 extra_css, include_empty
94 ))
Hao Zhuc1f38412017-02-23 12:13:48 -050095 }
96 if (kable_format == "latex") {
Hao Zhuf64f4752018-10-23 10:35:16 -040097 return(pdfTable_add_header_above(
98 kable_input, header, bold, italic, monospace, underline, strikeout,
Hao Zhu8b2126e2019-04-16 17:58:01 -040099 align, color, background, font_size, angle, escape, line, line_sep,
100 border_left, border_right))
Hao Zhuc1f38412017-02-23 12:13:48 -0500101 }
102}
103
104# HTML
Hao Zhu3465b502018-04-02 22:41:46 -0400105htmlTable_add_header_above <- function(kable_input, header, bold, italic,
Hao Zhu76f0eb62018-09-15 12:38:33 -0400106 monospace, underline, strikeout,
Hao Zhu6d68f7c2018-09-15 12:44:15 -0400107 align, color, background, font_size,
Hao Zhub548aac2018-09-18 13:29:01 -0400108 angle, escape, line, line_sep,
Hao Zhuf64f4752018-10-23 10:35:16 -0400109 extra_css, include_empty) {
Hao Zhu909ea382017-06-12 15:43:47 -0400110 kable_attrs <- attributes(kable_input)
Hao Zhu558c72f2017-07-24 15:12:00 -0400111 kable_xml <- read_kable_as_xml(kable_input)
Hao Zhu62cdde52017-05-20 22:16:03 -0400112 kable_xml_thead <- xml_tpart(kable_xml, "thead")
Hao Zhu7012cd02020-08-09 15:40:50 -0400113
Hao Zhuac7e70f2017-08-02 00:18:36 -0400114 if (escape) {
115 header$header <- escape_html(header$header)
116 }
117
kbrevoort970777b2019-09-05 23:26:44 -0400118 # If there is no existing header, add one
119 if (is.null(kable_xml_thead)) {
Hao Zhu69fa19d2020-08-12 08:31:14 -0400120 # Add thead node as first child
121 xml_add_child(kable_xml, 'thead', .where = 0)
kbrevoort970777b2019-09-05 23:26:44 -0400122 kable_xml_thead <- xml_tpart(kable_xml, 'thead')
123
Hao Zhu69fa19d2020-08-12 08:31:14 -0400124 # To check the number of columns in the new header, compare it to body
kbrevoort970777b2019-09-05 23:26:44 -0400125 kable_xml_tbody <- xml_tpart(kable_xml, 'tbody')
126 body_rows <- xml_children(kable_xml_tbody)
127 kable_ncol <- max(xml_length(body_rows))
128 } else {
129 header_rows <- xml_children(kable_xml_thead)
130 bottom_header_row <- header_rows[[length(header_rows)]]
131 kable_ncol <- length(xml_children(bottom_header_row))
132 }
133
Hao Zhuc1f38412017-02-23 12:13:48 -0500134 if (sum(header$colspan) != kable_ncol) {
135 stop("The new header row you provided has a different total number of ",
136 "columns with the original kable output.")
137 }
138
Hao Zhu76f0eb62018-09-15 12:38:33 -0400139 new_header_row <- htmlTable_new_header_generator(
Hao Zhub548aac2018-09-18 13:29:01 -0400140 header, bold, italic, monospace, underline, strikeout, align,
Hao Zhuf64f4752018-10-23 10:35:16 -0400141 color, background, font_size, angle, line, line_sep, extra_css, include_empty
Hao Zhu76f0eb62018-09-15 12:38:33 -0400142 )
Hao Zhuc1f38412017-02-23 12:13:48 -0500143 xml_add_child(kable_xml_thead, new_header_row, .where = 0)
Hao Zhuf2dfd142017-07-24 14:43:28 -0400144 out <- as_kable_xml(kable_xml)
Hao Zhu23456762018-03-26 12:30:10 -0400145 if (is.null(kable_attrs$header_above)) {
146 kable_attrs$header_above <- 1
147 } else {
148 kable_attrs$header_above <- kable_attrs$header_above + 1
149 }
Hao Zhu909ea382017-06-12 15:43:47 -0400150 attributes(out) <- kable_attrs
Hao Zhuf2100832018-01-11 16:20:29 -0500151 if (!"kableExtra" %in% class(out)) class(out) <- c("kableExtra", class(out))
Hao Zhu6a076462017-03-01 12:59:01 -0500152 return(out)
Hao Zhuc1f38412017-02-23 12:13:48 -0500153}
154
155standardize_header_input <- function(header) {
156 header_names <- names(header)
157
158 if (is.null(header_names)) {
159 return(data.frame(header = header, colspan = 1, row.names = NULL))
160 }
161
162 names(header)[header_names == ""] <- header[header_names == ""]
163 header[header_names == ""] <- 1
164 header_names <- names(header)
165 header <- as.numeric(header)
166 names(header) <- header_names
martinschmelzerf43dcf52019-01-08 13:02:52 +0100167 return(data.frame(header = names(header), colspan = header, row.names = NULL, stringsAsFactors = F))
Hao Zhuc1f38412017-02-23 12:13:48 -0500168}
169
Hao Zhu76f0eb62018-09-15 12:38:33 -0400170htmlTable_new_header_generator <- function(header_df, bold, italic, monospace,
Hao Zhub548aac2018-09-18 13:29:01 -0400171 underline, strikeout, align,
Hao Zhu76f0eb62018-09-15 12:38:33 -0400172 color, background, font_size,
Hao Zhuf64f4752018-10-23 10:35:16 -0400173 angle, line, line_sep, extra_css,
174 include_empty) {
Hao Zhu3465b502018-04-02 22:41:46 -0400175 if (align %in% c("l", "c", "r")) {
176 align <- switch(align, r = "right", c = "center", l = "left")
177 }
Hao Zhu32f43f72017-06-20 18:24:54 -0400178 row_style <- paste0(
Hao Zhu3465b502018-04-02 22:41:46 -0400179 paste0("text-align: ", align, "; "),
Hao Zhu32f43f72017-06-20 18:24:54 -0400180 ifelse(bold, "font-weight: bold; ", ""),
Hao Zhuac7e70f2017-08-02 00:18:36 -0400181 ifelse(italic, "font-style: italic; ", ""),
Hao Zhu76f0eb62018-09-15 12:38:33 -0400182 ifelse(monospace, "font-family: monospace; ", ""),
183 ifelse(underline, "text-decoration: underline; ", ""),
184 ifelse(strikeout, "text-decoration: line-through; ", "")
Hao Zhu32f43f72017-06-20 18:24:54 -0400185 )
Hao Zhu76f0eb62018-09-15 12:38:33 -0400186 if (!is.null(color)) {
Hao Zhu72917f92019-03-15 18:41:42 -0400187 row_style <- paste0(row_style, "color: ", html_color(color), " !important;")
Hao Zhu76f0eb62018-09-15 12:38:33 -0400188 }
189 if (!is.null(background)) {
190 row_style <- paste0(
191 row_style,
192 "padding-right: 4px; padding-left: 4px; ",
Hao Zhu72917f92019-03-15 18:41:42 -0400193 "background-color: ", html_color(background), " !important;"
Hao Zhu76f0eb62018-09-15 12:38:33 -0400194 )
195 }
196 if (!is.null(font_size)) {
197 if (is.numeric(font_size)) font_size <- paste0(font_size, "px")
198 row_style <- paste0(row_style, "font-size: ", font_size, ";")
199 }
Hao Zhu6d68f7c2018-09-15 12:44:15 -0400200 if (!is.null(extra_css)) {
201 row_style <- paste0(row_style, extra_css)
202 }
203
Hao Zhu76f0eb62018-09-15 12:38:33 -0400204 if (!is.null(angle)) {
205 angle <- paste0("-webkit-transform: rotate(", angle,
206 "deg); -moz-transform: rotate(", angle,
207 "deg); -ms-transform: rotate(", angle,
208 "deg); -o-transform: rotate(", angle,
209 "deg); transform: rotate(", angle,
210 "deg); display: inline-block; ")
Hao Zhuf64f4752018-10-23 10:35:16 -0400211 if (include_empty) {
212 header_df$header <- paste0('<span style="', angle, '">',
213 header_df$header, '</span>')
214 } else {
215 header_df$header <- ifelse(
216 trimws(header_df$header) == "",
217 header_df$header,
218 paste0('<span style="', angle, '">', header_df$header, '</span>')
219 )
220 }
Hao Zhu76f0eb62018-09-15 12:38:33 -0400221 }
222
223 line <- ifelse(ez_rep(line, nrow(header_df)),
224 "border-bottom: 1px solid #ddd; padding-bottom: 5px; ", "")
Hao Zhub548aac2018-09-18 13:29:01 -0400225 line_sep <- ez_rep(line_sep, nrow(header_df))
226 line_sep <- glue::glue('padding-left:{line_sep}px;padding-right:{line_sep}px;')
Hao Zhu76f0eb62018-09-15 12:38:33 -0400227
228 header_items <- ifelse(
229 trimws(header_df$header) == "",
230 paste0('<th style="border-bottom:hidden" colspan="', header_df$colspan,
231 '"></th>'),
232 paste0(
Hao Zhub548aac2018-09-18 13:29:01 -0400233 '<th style="border-bottom:hidden; padding-bottom:0; ',
234 line_sep, row_style, '" colspan="',
Hao Zhu76f0eb62018-09-15 12:38:33 -0400235 header_df$colspan, '"><div style="', line, '">', header_df$header,
236 '</div></th>')
237 )
Hao Zhuc1f38412017-02-23 12:13:48 -0500238 header_text <- paste(c("<tr>", header_items, "</tr>"), collapse = "")
239 header_xml <- read_xml(header_text, options = c("COMPACT"))
240 return(header_xml)
241}
242
243# Add an extra header row above the current header in a LaTeX table ------
Hao Zhu3465b502018-04-02 22:41:46 -0400244pdfTable_add_header_above <- function(kable_input, header, bold, italic,
Hao Zhub548aac2018-09-18 13:29:01 -0400245 monospace, underline, strikeout, align,
246 color, background, font_size, angle,
Hao Zhu8b2126e2019-04-16 17:58:01 -0400247 escape, line, line_sep,
248 border_left, border_right) {
Hao Zhuc1f38412017-02-23 12:13:48 -0500249 table_info <- magic_mirror(kable_input)
Hao Zhu7012cd02020-08-09 15:40:50 -0400250
jokorna00ad662019-11-07 21:11:19 +0100251 if (is.data.frame(header)){
jokorn1cb595e2019-11-07 21:26:54 +0100252 if(ncol(header) == 2 & is.character(header[[1]]) & is.numeric(header[[2]])){
jokorn19f6b532019-11-07 21:57:53 +0100253 header <- data.frame(header = header[[1]], colspan = header[[2]],
254 stringsAsFactors = FALSE)
jokorna00ad662019-11-07 21:11:19 +0100255 }
256 else {
257 stop("If header input is provided as a data frame instead of a named vector ",
258 "it must consist of only two columns: ",
259 "The first should be a character vector with ",
260 "header names and the second should be a numeric vector with ",
261 "the number of columns the header should span.")
262 }
263 }
264 else {
265 header <- standardize_header_input(header)
266 }
Hao Zhu248bbef2018-04-02 18:25:14 -0400267
Hao Zhuac7e70f2017-08-02 00:18:36 -0400268 if (escape) {
Hao Zhuf94a26f2018-04-05 17:42:55 -0400269 header$header <- input_escape(header$header, align)
Hao Zhuac7e70f2017-08-02 00:18:36 -0400270 }
Hao Zhu248bbef2018-04-02 18:25:14 -0400271
Hao Zhu3465b502018-04-02 22:41:46 -0400272 align <- match.arg(align, c("c", "l", "r"))
Hao Zhu248bbef2018-04-02 18:25:14 -0400273
Hao Zhuc1f38412017-02-23 12:13:48 -0500274 hline_type <- switch(table_info$booktabs + 1, "\\\\hline", "\\\\toprule")
Hao Zhu3465b502018-04-02 22:41:46 -0400275 new_header_split <- pdfTable_new_header_generator(
Hao Zhu76f0eb62018-09-15 12:38:33 -0400276 header, table_info$booktabs, bold, italic, monospace, underline, strikeout,
Hao Zhu8b2126e2019-04-16 17:58:01 -0400277 align, color, background, font_size, angle, line_sep,
278 border_left, border_right)
Hao Zhu76f0eb62018-09-15 12:38:33 -0400279 if (line) {
Salzer6bc84f82018-02-11 13:18:01 -0500280 new_header <- paste0(new_header_split[1], "\n", new_header_split[2])
281 } else {
282 new_header <- new_header_split[1]
283 }
Hao Zhu3fc0e882018-04-03 16:06:41 -0400284 out <- str_replace(solve_enc(kable_input),
Hao Zhub2b41992017-10-03 12:50:03 -0400285 hline_type,
286 paste0(hline_type, "\n", new_header))
Hao Zhuc1f38412017-02-23 12:13:48 -0500287 out <- structure(out, format = "latex", class = "knitr_kable")
Hao Zhu2ce42b92017-06-15 17:15:33 -0400288 # new_header_row <- latex_contents_escape(new_header_split[1])
289 if (is.null(table_info$new_header_row)) {
290 table_info$new_header_row <- new_header_split[1]
291 table_info$header_df <- list(header)
292 } else {
293 table_info$new_header_row <- c(table_info$new_header_row, new_header_split[1])
294 table_info$header_df[[length(table_info$header_df) + 1]] <- header
295 }
Hao Zhu32f43f72017-06-20 18:24:54 -0400296 attr(out, "kable_meta") <- table_info
Hao Zhuc1f38412017-02-23 12:13:48 -0500297 return(out)
298}
299
Hao Zhu76f0eb62018-09-15 12:38:33 -0400300ez_rep <- function(x, n) {
301 if (is.null(x)) return(NULL)
302 if (length(x) == 1) return(rep(x, n))
303 return(x)
304}
305
Hao Zhu32f43f72017-06-20 18:24:54 -0400306pdfTable_new_header_generator <- function(header_df, booktabs = FALSE,
Hao Zhu76f0eb62018-09-15 12:38:33 -0400307 bold, italic, monospace,
308 underline, strikeout, align,
Hao Zhub548aac2018-09-18 13:29:01 -0400309 color, background, font_size, angle,
Hao Zhu8b2126e2019-04-16 17:58:01 -0400310 line_sep, border_left, border_right) {
Hao Zhu76f0eb62018-09-15 12:38:33 -0400311 n <- nrow(header_df)
312 bold <- ez_rep(bold, n)
313 italic <- ez_rep(italic, n)
314 monospace <- ez_rep(monospace, n)
315 underline <- ez_rep(underline, n)
316 strikeout <- ez_rep(strikeout, n)
317 align <- ez_rep(align, n)
318 color <- ez_rep(color, n)
319 background <- ez_rep(background, n)
320 font_size <- ez_rep(font_size, n)
321 angle <- ez_rep(angle, n)
Hao Zhu8b2126e2019-04-16 17:58:01 -0400322 if (!booktabs & n != 1) {
martinschmelzerf43dcf52019-01-08 13:02:52 +0100323 align[1:(n - 1)] <- paste0(align[1:(n - 1)], "|")
Hao Zhuc1f38412017-02-23 12:13:48 -0500324 }
Hao Zhu8b2126e2019-04-16 17:58:01 -0400325 if (border_left) {
326 align[1] <- paste0("|", align[1])
327 }
328 if (border_right) {
329 align[n] <- paste0(align[n], "|")
330 }
331
Hao Zhu76f0eb62018-09-15 12:38:33 -0400332 header <- header_df$header
333 colspan <- header_df$colspan
334
335 header <- ifelse(bold, paste0('\\\\textbf\\{', header, '\\}'), header)
336 header <- ifelse(italic, paste0('\\\\em\\{', header, '\\}'), header)
337 header <- ifelse(monospace, paste0('\\\\ttfamily\\{', header, '\\}'), header)
338 header <- ifelse(underline, paste0('\\\\underline\\{', header, '\\}'), header)
339 header <- ifelse(strikeout, paste0('\\\\sout\\{', header, '\\}'), header)
340 if (!is.null(color)) {
341 color <- latex_color(color)
342 header <- paste0("\\\\textcolor", color, "\\{", header, "\\}")
343 }
344 if (!is.null(background)) {
345 background <- latex_color(background)
346 header <- paste0("\\\\cellcolor", background, "\\{", header, "\\}")
347 }
348 if (!is.null(font_size)) {
349 header <- paste0("\\\\bgroup\\\\fontsize\\{", font_size, "\\}\\{",
350 as.numeric(font_size) + 2,
351 "\\}\\\\selectfont ", header, "\\\\egroup\\{\\}")
352 }
353 if (!is.null(angle)) {
354 header <- paste0("\\\\rotatebox\\{", angle, "\\}\\{", header, "\\}")
355 }
356 header_items <- paste0(
357 '\\\\multicolumn\\{', colspan, '\\}\\{', align, '\\}\\{', header, '\\}'
358 )
359
Hao Zhuc1f38412017-02-23 12:13:48 -0500360 header_text <- paste(paste(header_items, collapse = " & "), "\\\\\\\\")
Hao Zhub548aac2018-09-18 13:29:01 -0400361 cline <- cline_gen(header_df, booktabs, line_sep)
Hao Zhu2ce42b92017-06-15 17:15:33 -0400362 return(c(header_text, cline))
363}
364
Hao Zhub548aac2018-09-18 13:29:01 -0400365cline_gen <- function(header_df, booktabs, line_sep) {
Hao Zhuc1f38412017-02-23 12:13:48 -0500366 cline_end <- cumsum(header_df$colspan)
367 cline_start <- c(0, cline_end) + 1
368 cline_start <- cline_start[-length(cline_start)]
Hao Zhub548aac2018-09-18 13:29:01 -0400369 cline_type <- switch(
370 booktabs + 1,
371 "\\\\cline{",
372 glue::glue("\\\\cmidrule(l{[line_sep]pt}r{[line_sep]pt}){",
373 .open = "[", .close = "]"))
Hao Zhuc1f38412017-02-23 12:13:48 -0500374 cline <- paste0(cline_type, cline_start, "-", cline_end, "}")
375 cline <- cline[trimws(header_df$header) != ""]
376 cline <- paste(cline, collapse = " ")
Hao Zhu2ce42b92017-06-15 17:15:33 -0400377 return(cline)
Hao Zhuc1f38412017-02-23 12:13:48 -0500378}
Hao Zhu2ce42b92017-06-15 17:15:33 -0400379
380