Hao Zhu | 79f1e2a | 2017-06-11 20:55:30 -0400 | [diff] [blame] | 1 | #' Specify the look of the selected row |
| 2 | #' |
| 3 | #' @description This function allows users to select a row and then specify |
Hao Zhu | 8d347c4 | 2017-10-10 13:11:19 -0400 | [diff] [blame] | 4 | #' its look. It can also specify the format of the header row when `row` = 0. |
Hao Zhu | 79f1e2a | 2017-06-11 20:55:30 -0400 | [diff] [blame] | 5 | #' |
| 6 | #' @param kable_input Output of `knitr::kable()` with `format` specified |
Hao Zhu | 322de08 | 2017-09-11 19:25:29 -0400 | [diff] [blame] | 7 | #' @param row A numeric value or vector indicating which row(s) to be selected. You don't |
Hao Zhu | 909ea38 | 2017-06-12 15:43:47 -0400 | [diff] [blame] | 8 | #' need to count in header rows or group labeling rows. |
Hao Zhu | 79f1e2a | 2017-06-11 20:55:30 -0400 | [diff] [blame] | 9 | #' @param bold A T/F value to control whether the text of the selected row |
| 10 | #' need to be bolded. |
| 11 | #' @param italic A T/F value to control whether the text of the selected row |
| 12 | #' need to be emphasized. |
Hao Zhu | ef0c830 | 2018-01-12 13:30:20 -0500 | [diff] [blame^] | 13 | #' @param 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] | 14 | #' need to be monospaced (verbatim) |
Hao Zhu | ef0c830 | 2018-01-12 13:30:20 -0500 | [diff] [blame^] | 15 | #' @param underline A T/F value to control whether the text of the selected row |
| 16 | #' need to be underlined |
| 17 | #' @param strikeout A T/F value to control whether the text of the selected row |
| 18 | #' need to be stricked out. |
Hao Zhu | 457acb4 | 2017-10-14 17:37:02 -0400 | [diff] [blame] | 19 | #' @param color A character string for row text color. For example, "red" or |
| 20 | #' "#BBBBBB". |
Hao Zhu | 8d347c4 | 2017-10-10 13:11:19 -0400 | [diff] [blame] | 21 | #' @param background A character string for row background color. Here please |
Hao Zhu | 53e240f | 2017-09-04 20:04:29 -0400 | [diff] [blame] | 22 | #' pay attention to the differences in color codes between HTML and LaTeX. |
Hao Zhu | 8d347c4 | 2017-10-10 13:11:19 -0400 | [diff] [blame] | 23 | #' @param align A character string for cell alignment. For HTML, possible values could |
| 24 | #' be `l`, `c`, `r` plus `left`, `center`, `right`, `justify`, `initial` and `inherit` |
| 25 | #' while for LaTeX, you can only choose from `l`, `c` & `r`. |
Hao Zhu | 8b32b19 | 2017-10-24 14:51:48 -0400 | [diff] [blame] | 26 | #' @param font_size A numeric input for font size. For HTML, you can also use |
| 27 | #' options including `xx-small`, `x-small`, `small`, `medium`, `large`, |
| 28 | #' `x-large`, `xx-large`, `smaller`, `larger`, `initial` and `inherit`. |
Hao Zhu | bacd2f3 | 2017-10-11 14:06:36 -0400 | [diff] [blame] | 29 | #' @param angle 0-360, degree that the text will rotate. |
Hao Zhu | b1de967 | 2018-01-08 16:29:24 -0500 | [diff] [blame] | 30 | #' @param extra_css Extra css text to be passed into the cells of the row. Note |
| 31 | #' that it's not for the whole row. |
Hao Zhu | 79f1e2a | 2017-06-11 20:55:30 -0400 | [diff] [blame] | 32 | #' |
| 33 | #' @examples x <- knitr::kable(head(mtcars), "html") |
Hao Zhu | 4840bc9 | 2017-09-15 15:55:05 -0400 | [diff] [blame] | 34 | #' row_spec(x, 1:2, bold = TRUE, italic = TRUE) |
Hao Zhu | 79f1e2a | 2017-06-11 20:55:30 -0400 | [diff] [blame] | 35 | #' |
| 36 | #' @export |
| 37 | row_spec <- function(kable_input, row, |
Hao Zhu | 669bcd2 | 2017-08-19 14:53:40 -0400 | [diff] [blame] | 38 | bold = FALSE, italic = FALSE, monospace = FALSE, |
Hao Zhu | ef0c830 | 2018-01-12 13:30:20 -0500 | [diff] [blame^] | 39 | underline = FALSE, strikeout = FALSE, |
Hao Zhu | bacd2f3 | 2017-10-11 14:06:36 -0400 | [diff] [blame] | 40 | color = NULL, background = NULL, align = NULL, |
Hao Zhu | 593f57e | 2018-01-09 13:30:01 -0500 | [diff] [blame] | 41 | font_size = NULL, angle = NULL, extra_css = NULL) { |
Hao Zhu | 79f1e2a | 2017-06-11 20:55:30 -0400 | [diff] [blame] | 42 | if (!is.numeric(row)) { |
Hao Zhu | 322de08 | 2017-09-11 19:25:29 -0400 | [diff] [blame] | 43 | stop("row must be numeric. ") |
Hao Zhu | 79f1e2a | 2017-06-11 20:55:30 -0400 | [diff] [blame] | 44 | } |
| 45 | kable_format <- attr(kable_input, "format") |
| 46 | if (!kable_format %in% c("html", "latex")) { |
| 47 | message("Currently generic markdown table using pandoc is not supported.") |
| 48 | return(kable_input) |
| 49 | } |
| 50 | if (kable_format == "html") { |
Hao Zhu | 669bcd2 | 2017-08-19 14:53:40 -0400 | [diff] [blame] | 51 | return(row_spec_html(kable_input, row, bold, italic, monospace, |
Hao Zhu | ef0c830 | 2018-01-12 13:30:20 -0500 | [diff] [blame^] | 52 | underline, strikeout, |
Hao Zhu | b1de967 | 2018-01-08 16:29:24 -0500 | [diff] [blame] | 53 | color, background, align, font_size, angle, |
| 54 | extra_css)) |
Hao Zhu | 79f1e2a | 2017-06-11 20:55:30 -0400 | [diff] [blame] | 55 | } |
| 56 | if (kable_format == "latex") { |
Hao Zhu | 669bcd2 | 2017-08-19 14:53:40 -0400 | [diff] [blame] | 57 | return(row_spec_latex(kable_input, row, bold, italic, monospace, |
Hao Zhu | ef0c830 | 2018-01-12 13:30:20 -0500 | [diff] [blame^] | 58 | underline, strikeout, |
Hao Zhu | 8b32b19 | 2017-10-24 14:51:48 -0400 | [diff] [blame] | 59 | color, background, align, font_size, angle)) |
Hao Zhu | 79f1e2a | 2017-06-11 20:55:30 -0400 | [diff] [blame] | 60 | } |
| 61 | } |
| 62 | |
Hao Zhu | 669bcd2 | 2017-08-19 14:53:40 -0400 | [diff] [blame] | 63 | row_spec_html <- function(kable_input, row, bold, italic, monospace, |
Hao Zhu | ef0c830 | 2018-01-12 13:30:20 -0500 | [diff] [blame^] | 64 | underline, strikeout, |
Hao Zhu | b1de967 | 2018-01-08 16:29:24 -0500 | [diff] [blame] | 65 | color, background, align, font_size, angle, |
| 66 | extra_css) { |
Hao Zhu | 79f1e2a | 2017-06-11 20:55:30 -0400 | [diff] [blame] | 67 | kable_attrs <- attributes(kable_input) |
Hao Zhu | 558c72f | 2017-07-24 15:12:00 -0400 | [diff] [blame] | 68 | kable_xml <- read_kable_as_xml(kable_input) |
Hao Zhu | 79f1e2a | 2017-06-11 20:55:30 -0400 | [diff] [blame] | 69 | |
Hao Zhu | 8d347c4 | 2017-10-10 13:11:19 -0400 | [diff] [blame] | 70 | if (!is.null(align)) { |
| 71 | if (align %in% c("l", "c", "r")) { |
| 72 | align <- switch(align, r = "right", c = "center", l = "left") |
| 73 | } |
Hao Zhu | 79f1e2a | 2017-06-11 20:55:30 -0400 | [diff] [blame] | 74 | } |
| 75 | |
Hao Zhu | 8d347c4 | 2017-10-10 13:11:19 -0400 | [diff] [blame] | 76 | if (0 %in% row) { |
| 77 | kable_thead <- xml_tpart(kable_xml, "thead") |
| 78 | original_header_row <- xml_child(kable_thead, length(xml_children(kable_thead))) |
| 79 | for (theader_i in 1:length(xml_children(original_header_row))) { |
| 80 | target_header_cell <- xml_child(original_header_row, theader_i) |
Hao Zhu | ef0c830 | 2018-01-12 13:30:20 -0500 | [diff] [blame^] | 81 | xml_cell_style(target_header_cell, bold, italic, monospace, |
| 82 | underline, strikeout, color, background, |
Hao Zhu | b1de967 | 2018-01-08 16:29:24 -0500 | [diff] [blame] | 83 | align, font_size, angle, extra_css) |
Hao Zhu | 8d347c4 | 2017-10-10 13:11:19 -0400 | [diff] [blame] | 84 | } |
| 85 | row <- row[row != 0] |
| 86 | } |
| 87 | |
| 88 | if (length(row) != 0) { |
| 89 | kable_tbody <- xml_tpart(kable_xml, "tbody") |
| 90 | |
| 91 | group_header_rows <- attr(kable_input, "group_header_rows") |
| 92 | if (!is.null(group_header_rows)) { |
| 93 | row <- positions_corrector(row, group_header_rows, |
| 94 | length(xml_children(kable_tbody))) |
| 95 | } |
| 96 | |
| 97 | for (j in row) { |
| 98 | target_row <- xml_child(kable_tbody, j) |
| 99 | for (i in 1:length(xml_children(target_row))) { |
| 100 | target_cell <- xml_child(target_row, i) |
Hao Zhu | ef0c830 | 2018-01-12 13:30:20 -0500 | [diff] [blame^] | 101 | xml_cell_style(target_cell, bold, italic, monospace, |
| 102 | underline, strikeout, color, background, |
Hao Zhu | b1de967 | 2018-01-08 16:29:24 -0500 | [diff] [blame] | 103 | align, font_size, angle, extra_css) |
Hao Zhu | 322de08 | 2017-09-11 19:25:29 -0400 | [diff] [blame] | 104 | } |
Hao Zhu | 669bcd2 | 2017-08-19 14:53:40 -0400 | [diff] [blame] | 105 | } |
Hao Zhu | 79f1e2a | 2017-06-11 20:55:30 -0400 | [diff] [blame] | 106 | } |
Hao Zhu | 322de08 | 2017-09-11 19:25:29 -0400 | [diff] [blame] | 107 | |
Hao Zhu | f2dfd14 | 2017-07-24 14:43:28 -0400 | [diff] [blame] | 108 | out <- as_kable_xml(kable_xml) |
Hao Zhu | 79f1e2a | 2017-06-11 20:55:30 -0400 | [diff] [blame] | 109 | attributes(out) <- kable_attrs |
Hao Zhu | f210083 | 2018-01-11 16:20:29 -0500 | [diff] [blame] | 110 | if (!"kableExtra" %in% class(out)) class(out) <- c("kableExtra", class(out)) |
Hao Zhu | 79f1e2a | 2017-06-11 20:55:30 -0400 | [diff] [blame] | 111 | return(out) |
| 112 | } |
| 113 | |
Hao Zhu | ef0c830 | 2018-01-12 13:30:20 -0500 | [diff] [blame^] | 114 | xml_cell_style <- function(x, bold, italic, monospace, |
| 115 | underline, strikeout, color, background, |
Hao Zhu | b1de967 | 2018-01-08 16:29:24 -0500 | [diff] [blame] | 116 | align, font_size, angle, extra_css) { |
Hao Zhu | 8d347c4 | 2017-10-10 13:11:19 -0400 | [diff] [blame] | 117 | if (bold) { |
| 118 | xml_attr(x, "style") <- paste0(xml_attr(x, "style"), |
Hao Zhu | bacd2f3 | 2017-10-11 14:06:36 -0400 | [diff] [blame] | 119 | "font-weight: bold;") |
Hao Zhu | 8d347c4 | 2017-10-10 13:11:19 -0400 | [diff] [blame] | 120 | } |
| 121 | if (italic) { |
| 122 | xml_attr(x, "style") <- paste0(xml_attr(x, "style"), |
Hao Zhu | bacd2f3 | 2017-10-11 14:06:36 -0400 | [diff] [blame] | 123 | "font-style: italic;") |
Hao Zhu | 8d347c4 | 2017-10-10 13:11:19 -0400 | [diff] [blame] | 124 | } |
| 125 | if (monospace) { |
| 126 | xml_attr(x, "style") <- paste0(xml_attr(x, "style"), |
Hao Zhu | bacd2f3 | 2017-10-11 14:06:36 -0400 | [diff] [blame] | 127 | "font-family: monospace;") |
Hao Zhu | 8d347c4 | 2017-10-10 13:11:19 -0400 | [diff] [blame] | 128 | } |
Hao Zhu | ef0c830 | 2018-01-12 13:30:20 -0500 | [diff] [blame^] | 129 | if (underline) { |
| 130 | xml_attr(x, "style") <- paste0(xml_attr(x, "style"), |
| 131 | "text-decoration: underline;") |
| 132 | } |
| 133 | if (strikeout) { |
| 134 | xml_attr(x, "style") <- paste0(xml_attr(x, "style"), |
| 135 | "text-decoration: line-through;") |
| 136 | } |
Hao Zhu | 8d347c4 | 2017-10-10 13:11:19 -0400 | [diff] [blame] | 137 | if (!is.null(color)) { |
| 138 | xml_attr(x, "style") <- paste0(xml_attr(x, "style"), |
Hao Zhu | bacd2f3 | 2017-10-11 14:06:36 -0400 | [diff] [blame] | 139 | "color: ", color, ";") |
Hao Zhu | 8d347c4 | 2017-10-10 13:11:19 -0400 | [diff] [blame] | 140 | } |
| 141 | if (!is.null(background)) { |
| 142 | xml_attr(x, "style") <- paste0(xml_attr(x, "style"), |
Hao Zhu | bacd2f3 | 2017-10-11 14:06:36 -0400 | [diff] [blame] | 143 | "background-color: ", |
| 144 | background, ";") |
Hao Zhu | 8d347c4 | 2017-10-10 13:11:19 -0400 | [diff] [blame] | 145 | } |
| 146 | if (!is.null(align)) { |
| 147 | xml_attr(x, "style") <- paste0(xml_attr(x, "style"), |
| 148 | "text-align: ", align, ";") |
| 149 | } |
Hao Zhu | e7c8f70 | 2017-10-10 13:22:59 -0400 | [diff] [blame] | 150 | if (!is.null(font_size)) { |
| 151 | xml_attr(x, "style") <- paste0(xml_attr(x, "style"), |
| 152 | "font-size: ", font_size, "px;") |
| 153 | } |
Hao Zhu | bacd2f3 | 2017-10-11 14:06:36 -0400 | [diff] [blame] | 154 | if (!is.null(angle)) { |
| 155 | xml_attr(x, "style") <- paste0(xml_attr(x, "style"), |
| 156 | "-webkit-transform: rotate(", angle, |
| 157 | "deg); -moz-transform: rotate(", angle, |
| 158 | "deg); -ms-transform: rotate(", angle, |
| 159 | "deg); -o-transform: rotate(", angle, |
Hao Zhu | 457acb4 | 2017-10-14 17:37:02 -0400 | [diff] [blame] | 160 | "deg); transform: rotate(", angle, |
Hao Zhu | bacd2f3 | 2017-10-11 14:06:36 -0400 | [diff] [blame] | 161 | "deg);") |
| 162 | } |
Hao Zhu | b1de967 | 2018-01-08 16:29:24 -0500 | [diff] [blame] | 163 | if (!is.null(extra_css)) { |
| 164 | xml_attr(x, "style") <- paste0(xml_attr(x, "style"), extra_css) |
| 165 | } |
Hao Zhu | 8d347c4 | 2017-10-10 13:11:19 -0400 | [diff] [blame] | 166 | return(x) |
| 167 | } |
| 168 | |
Hao Zhu | a73601b | 2017-08-19 15:31:51 -0400 | [diff] [blame] | 169 | row_spec_latex <- function(kable_input, row, bold, italic, monospace, |
Hao Zhu | ef0c830 | 2018-01-12 13:30:20 -0500 | [diff] [blame^] | 170 | underline, strikeout, |
Hao Zhu | 8b32b19 | 2017-10-24 14:51:48 -0400 | [diff] [blame] | 171 | color, background, align, font_size, angle) { |
Hao Zhu | 7360428 | 2017-06-11 22:08:48 -0400 | [diff] [blame] | 172 | table_info <- magic_mirror(kable_input) |
Hao Zhu | 322de08 | 2017-09-11 19:25:29 -0400 | [diff] [blame] | 173 | out <- enc2utf8(as.character(kable_input)) |
Hao Zhu | 064990d | 2017-10-17 18:08:42 -0400 | [diff] [blame] | 174 | |
| 175 | if (table_info$duplicated_rows) { |
| 176 | dup_fx_out <- fix_duplicated_rows_latex(out, table_info) |
| 177 | out <- dup_fx_out[[1]] |
| 178 | table_info <- dup_fx_out[[2]] |
| 179 | } |
| 180 | |
Hao Zhu | 322de08 | 2017-09-11 19:25:29 -0400 | [diff] [blame] | 181 | row <- row + 1 |
| 182 | for (i in row) { |
| 183 | target_row <- table_info$contents[i] |
| 184 | new_row <- latex_new_row_builder(target_row, bold, italic, monospace, |
Hao Zhu | ef0c830 | 2018-01-12 13:30:20 -0500 | [diff] [blame^] | 185 | underline, strikeout, |
Hao Zhu | 8b32b19 | 2017-10-24 14:51:48 -0400 | [diff] [blame] | 186 | color, background, align, font_size, angle) |
Hao Zhu | 322de08 | 2017-09-11 19:25:29 -0400 | [diff] [blame] | 187 | out <- sub(target_row, new_row, out, perl = T) |
| 188 | } |
| 189 | |
| 190 | out <- structure(out, format = "latex", class = "knitr_kable") |
| 191 | attr(out, "kable_meta") <- table_info |
| 192 | return(out) |
| 193 | } |
| 194 | |
| 195 | latex_new_row_builder <- function(target_row, bold, italic, monospace, |
Hao Zhu | ef0c830 | 2018-01-12 13:30:20 -0500 | [diff] [blame^] | 196 | underline, strikeout, |
Hao Zhu | 8b32b19 | 2017-10-24 14:51:48 -0400 | [diff] [blame] | 197 | color, background, align, font_size, angle) { |
Hao Zhu | 7360428 | 2017-06-11 22:08:48 -0400 | [diff] [blame] | 198 | new_row <- latex_row_cells(target_row) |
| 199 | if (bold) { |
Hao Zhu | 35ecd27 | 2017-06-11 22:50:42 -0400 | [diff] [blame] | 200 | new_row <- lapply(new_row, function(x) { |
Hao Zhu | ef0c830 | 2018-01-12 13:30:20 -0500 | [diff] [blame^] | 201 | paste0("\\\\textbf{", x, "}") |
Hao Zhu | 35ecd27 | 2017-06-11 22:50:42 -0400 | [diff] [blame] | 202 | }) |
Hao Zhu | 7360428 | 2017-06-11 22:08:48 -0400 | [diff] [blame] | 203 | } |
| 204 | if (italic) { |
Hao Zhu | 35ecd27 | 2017-06-11 22:50:42 -0400 | [diff] [blame] | 205 | new_row <- lapply(new_row, function(x) { |
| 206 | paste0("\\\\em{", x, "}") |
| 207 | }) |
Hao Zhu | 7360428 | 2017-06-11 22:08:48 -0400 | [diff] [blame] | 208 | } |
Hao Zhu | 3e53e60 | 2017-07-26 12:40:57 -0400 | [diff] [blame] | 209 | if (monospace) { |
| 210 | new_row <- lapply(new_row, function(x) { |
| 211 | paste0("\\\\ttfamily{", x, "}") |
| 212 | }) |
| 213 | } |
Hao Zhu | ef0c830 | 2018-01-12 13:30:20 -0500 | [diff] [blame^] | 214 | if (underline) { |
| 215 | new_row <- lapply(new_row, function(x) { |
| 216 | paste0("\\\\underline{", x, "}") |
| 217 | }) |
| 218 | } |
| 219 | if (strikeout) { |
| 220 | new_row <- lapply(new_row, function(x) { |
| 221 | paste0("\\\\sout{", x, "}") |
| 222 | }) |
| 223 | } |
Hao Zhu | a73601b | 2017-08-19 15:31:51 -0400 | [diff] [blame] | 224 | if (!is.null(color)) { |
| 225 | new_row <- lapply(new_row, function(x) { |
Hao Zhu | 457acb4 | 2017-10-14 17:37:02 -0400 | [diff] [blame] | 226 | paste0("\\\\textcolor", latex_color(color), "{", x, "}") |
Hao Zhu | a73601b | 2017-08-19 15:31:51 -0400 | [diff] [blame] | 227 | }) |
| 228 | } |
Hao Zhu | 8b32b19 | 2017-10-24 14:51:48 -0400 | [diff] [blame] | 229 | if (!is.null(font_size)) { |
| 230 | new_row <- lapply(new_row, function(x) { |
| 231 | paste0("\\\\begingroup\\\\fontsize{", font_size, "}{", |
| 232 | as.numeric(font_size) + 2, |
| 233 | "}\\\\selectfont ", x, "\\\\endgroup")}) |
| 234 | } |
Hao Zhu | 8d347c4 | 2017-10-10 13:11:19 -0400 | [diff] [blame] | 235 | if (!is.null(align)) { |
| 236 | new_row <- lapply(new_row, function(x) { |
| 237 | paste0("\\\\multicolumn{1}{", align, "}{", x, "}") |
| 238 | }) |
| 239 | } |
Hao Zhu | bacd2f3 | 2017-10-11 14:06:36 -0400 | [diff] [blame] | 240 | |
| 241 | if (!is.null(angle)) { |
| 242 | new_row <- lapply(new_row, function(x) { |
| 243 | paste0("\\\\rotatebox{", angle, "}{", x, "}") |
| 244 | }) |
| 245 | } |
| 246 | |
Hao Zhu | 35ecd27 | 2017-06-11 22:50:42 -0400 | [diff] [blame] | 247 | new_row <- paste(unlist(new_row), collapse = " & ") |
Hao Zhu | 7360428 | 2017-06-11 22:08:48 -0400 | [diff] [blame] | 248 | |
Hao Zhu | a73601b | 2017-08-19 15:31:51 -0400 | [diff] [blame] | 249 | if (!is.null(background)) { |
Hao Zhu | 915b1b2 | 2017-11-09 14:01:44 -0500 | [diff] [blame] | 250 | new_row <- paste0("\\\\rowcolor", latex_color(background), " ", new_row) |
Hao Zhu | a73601b | 2017-08-19 15:31:51 -0400 | [diff] [blame] | 251 | } |
| 252 | |
Hao Zhu | 322de08 | 2017-09-11 19:25:29 -0400 | [diff] [blame] | 253 | return(new_row) |
Hao Zhu | 7360428 | 2017-06-11 22:08:48 -0400 | [diff] [blame] | 254 | } |