| Hao Zhu | c1f3841 | 2017-02-23 12:13:48 -0500 | [diff] [blame] | 1 | % Generated by roxygen2: do not edit by hand | 
|  | 2 | % Please edit documentation in R/add_header_above.R | 
|  | 3 | \name{add_header_above} | 
|  | 4 | \alias{add_header_above} | 
| Hao Zhu | f7994dd | 2017-02-27 16:58:42 -0500 | [diff] [blame] | 5 | \title{Add a header row on top of current header} | 
| Hao Zhu | c1f3841 | 2017-02-23 12:13:48 -0500 | [diff] [blame] | 6 | \usage{ | 
| Hao Zhu | 76f0eb6 | 2018-09-15 12:38:33 -0400 | [diff] [blame] | 7 | add_header_above(kable_input, header = NULL, bold = FALSE, | 
|  | 8 | italic = FALSE, monospace = FALSE, underline = FALSE, | 
|  | 9 | strikeout = FALSE, align = "c", color = NULL, background = NULL, | 
| Hao Zhu | 6d68f7c | 2018-09-15 12:44:15 -0400 | [diff] [blame] | 10 | font_size = NULL, angle = NULL, escape = TRUE, line = TRUE, | 
| Hao Zhu | f64f475 | 2018-10-23 10:35:16 -0400 | [diff] [blame^] | 11 | line_sep = 3, extra_css = NULL, include_empty = FALSE) | 
| Hao Zhu | c1f3841 | 2017-02-23 12:13:48 -0500 | [diff] [blame] | 12 | } | 
| Hao Zhu | f7994dd | 2017-02-27 16:58:42 -0500 | [diff] [blame] | 13 | \arguments{ | 
| Hao Zhu | 76281fe | 2017-07-03 19:33:09 -0400 | [diff] [blame] | 14 | \item{kable_input}{Output of \code{knitr::kable()} with \code{format} specified} | 
| Hao Zhu | f7994dd | 2017-02-27 16:58:42 -0500 | [diff] [blame] | 15 |  | 
| Hao Zhu | 76281fe | 2017-07-03 19:33:09 -0400 | [diff] [blame] | 16 | \item{header}{A (named) character vector with \code{colspan} as values. For | 
|  | 17 | example, \code{c(" " = 1, "title" = 2)} can be used to create a new header row | 
| Hao Zhu | f7994dd | 2017-02-27 16:58:42 -0500 | [diff] [blame] | 18 | for a 3-column table with "title" spanning across column 2 and 3. For | 
| Hao Zhu | 76281fe | 2017-07-03 19:33:09 -0400 | [diff] [blame] | 19 | convenience, when \code{colspan} equals to 1, users can drop the \code{= 1} part. | 
|  | 20 | As a result, \code{c(" ", "title" = 2)} is the same as \code{c(" " = 1, "title" = 2)}.} | 
| Hao Zhu | 32f43f7 | 2017-06-20 18:24:54 -0400 | [diff] [blame] | 21 |  | 
|  | 22 | \item{bold}{A T/F value to control whether the text should be bolded.} | 
|  | 23 |  | 
|  | 24 | \item{italic}{A T/F value to control whether the text should to be emphasized.} | 
| Hao Zhu | ac7e70f | 2017-08-02 00:18:36 -0400 | [diff] [blame] | 25 |  | 
|  | 26 | \item{monospace}{A T/F value to control whether the text of the selected column | 
|  | 27 | need to be monospaced (verbatim)} | 
|  | 28 |  | 
| Hao Zhu | 76f0eb6 | 2018-09-15 12:38:33 -0400 | [diff] [blame] | 29 | \item{underline}{A T/F value to control whether the text of the selected row | 
|  | 30 | need to be underlined} | 
|  | 31 |  | 
|  | 32 | \item{strikeout}{A T/F value to control whether the text of the selected row | 
|  | 33 | need to be stricked out.} | 
|  | 34 |  | 
| Hao Zhu | 3465b50 | 2018-04-02 22:41:46 -0400 | [diff] [blame] | 35 | \item{align}{A character string for cell alignment. For HTML, possible values could | 
|  | 36 | be \code{l}, \code{c}, \code{r} plus \code{left}, \code{center}, \code{right}, \code{justify}, \code{initial} and \code{inherit} | 
|  | 37 | while for LaTeX, you can only choose from \code{l}, \code{c} & \code{r}.} | 
|  | 38 |  | 
| Hao Zhu | 76f0eb6 | 2018-09-15 12:38:33 -0400 | [diff] [blame] | 39 | \item{color}{A character string/vector for text color. Here please pay | 
|  | 40 | attention to the differences in color codes between HTML and LaTeX.} | 
|  | 41 |  | 
|  | 42 | \item{background}{A character string/vector for background color. Here please | 
|  | 43 | pay attention to the differences in color codes between HTML and LaTeX. Also | 
|  | 44 | note that in HTML, background defined in cell_spec won't cover the whole | 
|  | 45 | cell.} | 
|  | 46 |  | 
|  | 47 | \item{font_size}{A numeric input/vector for font size. For HTML, you can also use | 
|  | 48 | options including \code{xx-small}, \code{x-small}, \code{small}, \code{medium}, \code{large}, | 
|  | 49 | \code{x-large}, \code{xx-large}, \code{smaller}, \code{larger}, \code{initial} and \code{inherit}.} | 
|  | 50 |  | 
|  | 51 | \item{angle}{0-360, degree that the text will rotate.} | 
|  | 52 |  | 
| Hao Zhu | ac7e70f | 2017-08-02 00:18:36 -0400 | [diff] [blame] | 53 | \item{escape}{A T/F value showing whether special characters should be | 
|  | 54 | escaped.} | 
| Hao Zhu | 68b5bbf | 2018-03-26 11:30:34 -0400 | [diff] [blame] | 55 |  | 
|  | 56 | \item{line}{A T/F value to control whether a line will appear underneath the | 
|  | 57 | header} | 
| Hao Zhu | 6d68f7c | 2018-09-15 12:44:15 -0400 | [diff] [blame] | 58 |  | 
| Hao Zhu | b548aac | 2018-09-18 13:29:01 -0400 | [diff] [blame] | 59 | \item{line_sep}{A numeric value indicating how much the midlines should be | 
|  | 60 | separated by space. Default is 3.} | 
|  | 61 |  | 
| Hao Zhu | 6d68f7c | 2018-09-15 12:44:15 -0400 | [diff] [blame] | 62 | \item{extra_css}{An HTML only option. CSS defined here will be send to the | 
|  | 63 | td cell.} | 
| Hao Zhu | f64f475 | 2018-10-23 10:35:16 -0400 | [diff] [blame^] | 64 |  | 
|  | 65 | \item{include_empty}{Whether empty cells in HTML should also be styled. | 
|  | 66 | Default is FALSE.} | 
| Hao Zhu | f7994dd | 2017-02-27 16:58:42 -0500 | [diff] [blame] | 67 | } | 
| Hao Zhu | c1f3841 | 2017-02-23 12:13:48 -0500 | [diff] [blame] | 68 | \description{ | 
| Hao Zhu | f7994dd | 2017-02-27 16:58:42 -0500 | [diff] [blame] | 69 | Tables with multiple rows of header rows are extremely useful | 
| Hao Zhu | 76281fe | 2017-07-03 19:33:09 -0400 | [diff] [blame] | 70 | to demonstrate grouped data. This function takes the output of a \code{kable()} | 
| Hao Zhu | e7c8f70 | 2017-10-10 13:22:59 -0400 | [diff] [blame] | 71 | function and adds an header row on top of it. | 
| Hao Zhu | c1f3841 | 2017-02-23 12:13:48 -0500 | [diff] [blame] | 72 | } | 
| Hao Zhu | 78e6122 | 2017-05-24 20:53:35 -0400 | [diff] [blame] | 73 | \examples{ | 
|  | 74 | x <- knitr::kable(head(mtcars), "html") | 
|  | 75 | # Add a row of header with 3 columns on the top of the table. The column | 
|  | 76 | # span for the 2nd and 3rd one are 5 & 6. | 
|  | 77 | add_header_above(x, c(" ", "Group 1" = 5, "Group 2" = 6)) | 
|  | 78 |  | 
|  | 79 | } |