Hao Zhu | 79f1e2a | 2017-06-11 20:55:30 -0400 | [diff] [blame] | 1 | % Generated by roxygen2: do not edit by hand |
| 2 | % Please edit documentation in R/row_spec.R |
| 3 | \name{row_spec} |
| 4 | \alias{row_spec} |
| 5 | \title{Specify the look of the selected row} |
| 6 | \usage{ |
Hao Zhu | 3e53e60 | 2017-07-26 12:40:57 -0400 | [diff] [blame] | 7 | row_spec(kable_input, row, bold = FALSE, italic = FALSE, |
Hao Zhu | 76f0eb6 | 2018-09-15 12:38:33 -0400 | [diff] [blame^] | 8 | monospace = FALSE, underline = FALSE, strikeout = FALSE, |
| 9 | color = NULL, background = NULL, align = NULL, font_size = NULL, |
| 10 | angle = NULL, extra_css = NULL, hline_after = FALSE, |
| 11 | extra_latex_after = NULL) |
Hao Zhu | 79f1e2a | 2017-06-11 20:55:30 -0400 | [diff] [blame] | 12 | } |
| 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 | 79f1e2a | 2017-06-11 20:55:30 -0400 | [diff] [blame] | 15 | |
Hao Zhu | 322de08 | 2017-09-11 19:25:29 -0400 | [diff] [blame] | 16 | \item{row}{A numeric value or vector indicating which row(s) to be selected. You don't |
Hao Zhu | 2a87e8e | 2017-06-14 15:49:33 -0400 | [diff] [blame] | 17 | need to count in header rows or group labeling rows.} |
Hao Zhu | 79f1e2a | 2017-06-11 20:55:30 -0400 | [diff] [blame] | 18 | |
| 19 | \item{bold}{A T/F value to control whether the text of the selected row |
| 20 | need to be bolded.} |
| 21 | |
| 22 | \item{italic}{A T/F value to control whether the text of the selected row |
| 23 | need to be emphasized.} |
Hao Zhu | 3e53e60 | 2017-07-26 12:40:57 -0400 | [diff] [blame] | 24 | |
Hao Zhu | 53454f0 | 2018-01-14 16:29:10 -0500 | [diff] [blame] | 25 | \item{monospace}{A T/F value to control whether the text of the selected row |
Hao Zhu | 3e53e60 | 2017-07-26 12:40:57 -0400 | [diff] [blame] | 26 | need to be monospaced (verbatim)} |
Hao Zhu | 53e240f | 2017-09-04 20:04:29 -0400 | [diff] [blame] | 27 | |
Hao Zhu | 53454f0 | 2018-01-14 16:29:10 -0500 | [diff] [blame] | 28 | \item{underline}{A T/F value to control whether the text of the selected row |
| 29 | need to be underlined} |
| 30 | |
| 31 | \item{strikeout}{A T/F value to control whether the text of the selected row |
| 32 | need to be stricked out.} |
| 33 | |
Hao Zhu | 457acb4 | 2017-10-14 17:37:02 -0400 | [diff] [blame] | 34 | \item{color}{A character string for row text color. For example, "red" or |
| 35 | "#BBBBBB".} |
Hao Zhu | 53e240f | 2017-09-04 20:04:29 -0400 | [diff] [blame] | 36 | |
Hao Zhu | e7c8f70 | 2017-10-10 13:22:59 -0400 | [diff] [blame] | 37 | \item{background}{A character string for row background color. Here please |
Hao Zhu | 53e240f | 2017-09-04 20:04:29 -0400 | [diff] [blame] | 38 | pay attention to the differences in color codes between HTML and LaTeX.} |
Hao Zhu | e7c8f70 | 2017-10-10 13:22:59 -0400 | [diff] [blame] | 39 | |
| 40 | \item{align}{A character string for cell alignment. For HTML, possible values could |
| 41 | be \code{l}, \code{c}, \code{r} plus \code{left}, \code{center}, \code{right}, \code{justify}, \code{initial} and \code{inherit} |
| 42 | while for LaTeX, you can only choose from \code{l}, \code{c} & \code{r}.} |
| 43 | |
Hao Zhu | 8b32b19 | 2017-10-24 14:51:48 -0400 | [diff] [blame] | 44 | \item{font_size}{A numeric input for font size. For HTML, you can also use |
| 45 | options including \code{xx-small}, \code{x-small}, \code{small}, \code{medium}, \code{large}, |
| 46 | \code{x-large}, \code{xx-large}, \code{smaller}, \code{larger}, \code{initial} and \code{inherit}.} |
Hao Zhu | bacd2f3 | 2017-10-11 14:06:36 -0400 | [diff] [blame] | 47 | |
| 48 | \item{angle}{0-360, degree that the text will rotate.} |
Hao Zhu | b1de967 | 2018-01-08 16:29:24 -0500 | [diff] [blame] | 49 | |
| 50 | \item{extra_css}{Extra css text to be passed into the cells of the row. Note |
| 51 | that it's not for the whole row.} |
Hao Zhu | 53454f0 | 2018-01-14 16:29:10 -0500 | [diff] [blame] | 52 | |
| 53 | \item{hline_after}{T/F. A replicate of \code{hline.after} in xtable. It |
| 54 | addes a hline after ther row} |
| 55 | |
| 56 | \item{extra_latex_after}{Extra LaTeX text to be added after the row. Similar |
| 57 | with \code{add.to.row} in xtable} |
Hao Zhu | 79f1e2a | 2017-06-11 20:55:30 -0400 | [diff] [blame] | 58 | } |
| 59 | \description{ |
| 60 | This function allows users to select a row and then specify |
Hao Zhu | e7c8f70 | 2017-10-10 13:22:59 -0400 | [diff] [blame] | 61 | its look. It can also specify the format of the header row when \code{row} = 0. |
Hao Zhu | 79f1e2a | 2017-06-11 20:55:30 -0400 | [diff] [blame] | 62 | } |
| 63 | \examples{ |
| 64 | x <- knitr::kable(head(mtcars), "html") |
Hao Zhu | 4840bc9 | 2017-09-15 15:55:05 -0400 | [diff] [blame] | 65 | row_spec(x, 1:2, bold = TRUE, italic = TRUE) |
Hao Zhu | 79f1e2a | 2017-06-11 20:55:30 -0400 | [diff] [blame] | 66 | |
| 67 | } |