blob: 452479b1ecae96e3b3f0079e071c0facc1063b19 [file] [log] [blame]
Hao Zhuc1f38412017-02-23 12:13:48 -05001% 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 Zhuf7994dd2017-02-27 16:58:42 -05005\title{Add a header row on top of current header}
Hao Zhuc1f38412017-02-23 12:13:48 -05006\usage{
Hao Zhu76f0eb62018-09-15 12:38:33 -04007add_header_above(kable_input, header = NULL, bold = FALSE,
8 italic = FALSE, monospace = FALSE, underline = FALSE,
9 strikeout = FALSE, align = "c", color = NULL, background = NULL,
10 font_size = NULL, angle = NULL, escape = TRUE, line = TRUE)
Hao Zhuc1f38412017-02-23 12:13:48 -050011}
Hao Zhuf7994dd2017-02-27 16:58:42 -050012\arguments{
Hao Zhu76281fe2017-07-03 19:33:09 -040013\item{kable_input}{Output of \code{knitr::kable()} with \code{format} specified}
Hao Zhuf7994dd2017-02-27 16:58:42 -050014
Hao Zhu76281fe2017-07-03 19:33:09 -040015\item{header}{A (named) character vector with \code{colspan} as values. For
16example, \code{c(" " = 1, "title" = 2)} can be used to create a new header row
Hao Zhuf7994dd2017-02-27 16:58:42 -050017for a 3-column table with "title" spanning across column 2 and 3. For
Hao Zhu76281fe2017-07-03 19:33:09 -040018convenience, when \code{colspan} equals to 1, users can drop the \code{= 1} part.
19As a result, \code{c(" ", "title" = 2)} is the same as \code{c(" " = 1, "title" = 2)}.}
Hao Zhu32f43f72017-06-20 18:24:54 -040020
21\item{bold}{A T/F value to control whether the text should be bolded.}
22
23\item{italic}{A T/F value to control whether the text should to be emphasized.}
Hao Zhuac7e70f2017-08-02 00:18:36 -040024
25\item{monospace}{A T/F value to control whether the text of the selected column
26need to be monospaced (verbatim)}
27
Hao Zhu76f0eb62018-09-15 12:38:33 -040028\item{underline}{A T/F value to control whether the text of the selected row
29need to be underlined}
30
31\item{strikeout}{A T/F value to control whether the text of the selected row
32need to be stricked out.}
33
Hao Zhu3465b502018-04-02 22:41:46 -040034\item{align}{A character string for cell alignment. For HTML, possible values could
35be \code{l}, \code{c}, \code{r} plus \code{left}, \code{center}, \code{right}, \code{justify}, \code{initial} and \code{inherit}
36while for LaTeX, you can only choose from \code{l}, \code{c} & \code{r}.}
37
Hao Zhu76f0eb62018-09-15 12:38:33 -040038\item{color}{A character string/vector for text color. Here please pay
39attention to the differences in color codes between HTML and LaTeX.}
40
41\item{background}{A character string/vector for background color. Here please
42pay attention to the differences in color codes between HTML and LaTeX. Also
43note that in HTML, background defined in cell_spec won't cover the whole
44cell.}
45
46\item{font_size}{A numeric input/vector for font size. For HTML, you can also use
47options including \code{xx-small}, \code{x-small}, \code{small}, \code{medium}, \code{large},
48\code{x-large}, \code{xx-large}, \code{smaller}, \code{larger}, \code{initial} and \code{inherit}.}
49
50\item{angle}{0-360, degree that the text will rotate.}
51
Hao Zhuac7e70f2017-08-02 00:18:36 -040052\item{escape}{A T/F value showing whether special characters should be
53escaped.}
Hao Zhu68b5bbf2018-03-26 11:30:34 -040054
55\item{line}{A T/F value to control whether a line will appear underneath the
56header}
Hao Zhuf7994dd2017-02-27 16:58:42 -050057}
Hao Zhuc1f38412017-02-23 12:13:48 -050058\description{
Hao Zhuf7994dd2017-02-27 16:58:42 -050059Tables with multiple rows of header rows are extremely useful
Hao Zhu76281fe2017-07-03 19:33:09 -040060to demonstrate grouped data. This function takes the output of a \code{kable()}
Hao Zhue7c8f702017-10-10 13:22:59 -040061function and adds an header row on top of it.
Hao Zhuc1f38412017-02-23 12:13:48 -050062}
Hao Zhu78e61222017-05-24 20:53:35 -040063\examples{
64x <- knitr::kable(head(mtcars), "html")
65# Add a row of header with 3 columns on the top of the table. The column
66# span for the 2nd and 3rd one are 5 & 6.
67add_header_above(x, c(" ", "Group 1" = 5, "Group 2" = 6))
68
69}