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