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 | 8d347c4 | 2017-10-10 13:11:19 -0400 | [diff] [blame] | 15 | #' @param color A character string for row text color. Here please pay |
Hao Zhu | 53e240f | 2017-09-04 20:04:29 -0400 | [diff] [blame] | 16 | #' attention to the differences in color codes between HTML and LaTeX. |
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 | 79f1e2a | 2017-06-11 20:55:30 -0400 | [diff] [blame] | 22 | #' |
| 23 | #' @examples x <- knitr::kable(head(mtcars), "html") |
Hao Zhu | 4840bc9 | 2017-09-15 15:55:05 -0400 | [diff] [blame] | 24 | #' row_spec(x, 1:2, bold = TRUE, italic = TRUE) |
Hao Zhu | 79f1e2a | 2017-06-11 20:55:30 -0400 | [diff] [blame] | 25 | #' |
| 26 | #' @export |
| 27 | row_spec <- function(kable_input, row, |
Hao Zhu | 669bcd2 | 2017-08-19 14:53:40 -0400 | [diff] [blame] | 28 | bold = FALSE, italic = FALSE, monospace = FALSE, |
Hao Zhu | 8d347c4 | 2017-10-10 13:11:19 -0400 | [diff] [blame] | 29 | color = NULL, background = NULL, align = NULL) { |
Hao Zhu | 79f1e2a | 2017-06-11 20:55:30 -0400 | [diff] [blame] | 30 | if (!is.numeric(row)) { |
Hao Zhu | 322de08 | 2017-09-11 19:25:29 -0400 | [diff] [blame] | 31 | stop("row must be numeric. ") |
Hao Zhu | 79f1e2a | 2017-06-11 20:55:30 -0400 | [diff] [blame] | 32 | } |
| 33 | kable_format <- attr(kable_input, "format") |
| 34 | if (!kable_format %in% c("html", "latex")) { |
| 35 | message("Currently generic markdown table using pandoc is not supported.") |
| 36 | return(kable_input) |
| 37 | } |
| 38 | if (kable_format == "html") { |
Hao Zhu | 669bcd2 | 2017-08-19 14:53:40 -0400 | [diff] [blame] | 39 | return(row_spec_html(kable_input, row, bold, italic, monospace, |
Hao Zhu | 8d347c4 | 2017-10-10 13:11:19 -0400 | [diff] [blame] | 40 | color, background, align)) |
Hao Zhu | 79f1e2a | 2017-06-11 20:55:30 -0400 | [diff] [blame] | 41 | } |
| 42 | if (kable_format == "latex") { |
Hao Zhu | 669bcd2 | 2017-08-19 14:53:40 -0400 | [diff] [blame] | 43 | return(row_spec_latex(kable_input, row, bold, italic, monospace, |
Hao Zhu | 8d347c4 | 2017-10-10 13:11:19 -0400 | [diff] [blame] | 44 | color, background, align)) |
Hao Zhu | 79f1e2a | 2017-06-11 20:55:30 -0400 | [diff] [blame] | 45 | } |
| 46 | } |
| 47 | |
Hao Zhu | 669bcd2 | 2017-08-19 14:53:40 -0400 | [diff] [blame] | 48 | row_spec_html <- function(kable_input, row, bold, italic, monospace, |
Hao Zhu | 8d347c4 | 2017-10-10 13:11:19 -0400 | [diff] [blame] | 49 | color, background, align) { |
Hao Zhu | 79f1e2a | 2017-06-11 20:55:30 -0400 | [diff] [blame] | 50 | kable_attrs <- attributes(kable_input) |
Hao Zhu | 558c72f | 2017-07-24 15:12:00 -0400 | [diff] [blame] | 51 | kable_xml <- read_kable_as_xml(kable_input) |
Hao Zhu | 79f1e2a | 2017-06-11 20:55:30 -0400 | [diff] [blame] | 52 | |
Hao Zhu | 8d347c4 | 2017-10-10 13:11:19 -0400 | [diff] [blame] | 53 | if (!is.null(align)) { |
| 54 | if (align %in% c("l", "c", "r")) { |
| 55 | align <- switch(align, r = "right", c = "center", l = "left") |
| 56 | } |
Hao Zhu | 79f1e2a | 2017-06-11 20:55:30 -0400 | [diff] [blame] | 57 | } |
| 58 | |
Hao Zhu | 8d347c4 | 2017-10-10 13:11:19 -0400 | [diff] [blame] | 59 | if (0 %in% row) { |
| 60 | kable_thead <- xml_tpart(kable_xml, "thead") |
| 61 | original_header_row <- xml_child(kable_thead, length(xml_children(kable_thead))) |
| 62 | for (theader_i in 1:length(xml_children(original_header_row))) { |
| 63 | target_header_cell <- xml_child(original_header_row, theader_i) |
| 64 | xml_cell_style(target_header_cell, bold, italic, monospace, color, background, align) |
| 65 | } |
| 66 | row <- row[row != 0] |
| 67 | } |
| 68 | |
| 69 | if (length(row) != 0) { |
| 70 | kable_tbody <- xml_tpart(kable_xml, "tbody") |
| 71 | |
| 72 | group_header_rows <- attr(kable_input, "group_header_rows") |
| 73 | if (!is.null(group_header_rows)) { |
| 74 | row <- positions_corrector(row, group_header_rows, |
| 75 | length(xml_children(kable_tbody))) |
| 76 | } |
| 77 | |
| 78 | for (j in row) { |
| 79 | target_row <- xml_child(kable_tbody, j) |
| 80 | for (i in 1:length(xml_children(target_row))) { |
| 81 | target_cell <- xml_child(target_row, i) |
| 82 | xml_cell_style(target_cell, bold, italic, monospace, color, background, align) |
Hao Zhu | 322de08 | 2017-09-11 19:25:29 -0400 | [diff] [blame] | 83 | } |
Hao Zhu | 669bcd2 | 2017-08-19 14:53:40 -0400 | [diff] [blame] | 84 | } |
Hao Zhu | 79f1e2a | 2017-06-11 20:55:30 -0400 | [diff] [blame] | 85 | } |
Hao Zhu | 322de08 | 2017-09-11 19:25:29 -0400 | [diff] [blame] | 86 | |
Hao Zhu | f2dfd14 | 2017-07-24 14:43:28 -0400 | [diff] [blame] | 87 | out <- as_kable_xml(kable_xml) |
Hao Zhu | 79f1e2a | 2017-06-11 20:55:30 -0400 | [diff] [blame] | 88 | attributes(out) <- kable_attrs |
| 89 | return(out) |
| 90 | } |
| 91 | |
Hao Zhu | 8d347c4 | 2017-10-10 13:11:19 -0400 | [diff] [blame] | 92 | xml_cell_style <- function(x, bold, italic, monospace, color, background, align) { |
| 93 | if (bold) { |
| 94 | xml_attr(x, "style") <- paste0(xml_attr(x, "style"), |
| 95 | "font-weight: bold;") |
| 96 | } |
| 97 | if (italic) { |
| 98 | xml_attr(x, "style") <- paste0(xml_attr(x, "style"), |
| 99 | "font-style: italic;") |
| 100 | } |
| 101 | if (monospace) { |
| 102 | xml_attr(x, "style") <- paste0(xml_attr(x, "style"), |
| 103 | "font-family: monospace;") |
| 104 | } |
| 105 | if (!is.null(color)) { |
| 106 | xml_attr(x, "style") <- paste0(xml_attr(x, "style"), |
| 107 | "color: ", color, ";") |
| 108 | } |
| 109 | if (!is.null(background)) { |
| 110 | xml_attr(x, "style") <- paste0(xml_attr(x, "style"), |
| 111 | "background-color: ", |
| 112 | background, ";") |
| 113 | } |
| 114 | if (!is.null(align)) { |
| 115 | xml_attr(x, "style") <- paste0(xml_attr(x, "style"), |
| 116 | "text-align: ", align, ";") |
| 117 | } |
| 118 | return(x) |
| 119 | } |
| 120 | |
Hao Zhu | a73601b | 2017-08-19 15:31:51 -0400 | [diff] [blame] | 121 | row_spec_latex <- function(kable_input, row, bold, italic, monospace, |
Hao Zhu | 8d347c4 | 2017-10-10 13:11:19 -0400 | [diff] [blame] | 122 | color, background, align) { |
Hao Zhu | 7360428 | 2017-06-11 22:08:48 -0400 | [diff] [blame] | 123 | table_info <- magic_mirror(kable_input) |
Hao Zhu | 322de08 | 2017-09-11 19:25:29 -0400 | [diff] [blame] | 124 | out <- enc2utf8(as.character(kable_input)) |
| 125 | row <- row + 1 |
| 126 | for (i in row) { |
| 127 | target_row <- table_info$contents[i] |
| 128 | new_row <- latex_new_row_builder(target_row, bold, italic, monospace, |
Hao Zhu | 8d347c4 | 2017-10-10 13:11:19 -0400 | [diff] [blame] | 129 | color, background, align) |
Hao Zhu | 322de08 | 2017-09-11 19:25:29 -0400 | [diff] [blame] | 130 | out <- sub(target_row, new_row, out, perl = T) |
| 131 | } |
| 132 | |
| 133 | out <- structure(out, format = "latex", class = "knitr_kable") |
| 134 | attr(out, "kable_meta") <- table_info |
| 135 | return(out) |
| 136 | } |
| 137 | |
| 138 | latex_new_row_builder <- function(target_row, bold, italic, monospace, |
Hao Zhu | 8d347c4 | 2017-10-10 13:11:19 -0400 | [diff] [blame] | 139 | color, background, align) { |
Hao Zhu | 7360428 | 2017-06-11 22:08:48 -0400 | [diff] [blame] | 140 | new_row <- latex_row_cells(target_row) |
| 141 | if (bold) { |
Hao Zhu | 35ecd27 | 2017-06-11 22:50:42 -0400 | [diff] [blame] | 142 | new_row <- lapply(new_row, function(x) { |
| 143 | paste0("\\\\bfseries{", x, "}") |
| 144 | }) |
Hao Zhu | 7360428 | 2017-06-11 22:08:48 -0400 | [diff] [blame] | 145 | } |
| 146 | if (italic) { |
Hao Zhu | 35ecd27 | 2017-06-11 22:50:42 -0400 | [diff] [blame] | 147 | new_row <- lapply(new_row, function(x) { |
| 148 | paste0("\\\\em{", x, "}") |
| 149 | }) |
Hao Zhu | 7360428 | 2017-06-11 22:08:48 -0400 | [diff] [blame] | 150 | } |
Hao Zhu | 3e53e60 | 2017-07-26 12:40:57 -0400 | [diff] [blame] | 151 | if (monospace) { |
| 152 | new_row <- lapply(new_row, function(x) { |
| 153 | paste0("\\\\ttfamily{", x, "}") |
| 154 | }) |
| 155 | } |
Hao Zhu | a73601b | 2017-08-19 15:31:51 -0400 | [diff] [blame] | 156 | |
| 157 | if (!is.null(color)) { |
| 158 | new_row <- lapply(new_row, function(x) { |
| 159 | paste0("\\\\textcolor{", color, "}{", x, "}") |
| 160 | }) |
| 161 | } |
Hao Zhu | 8d347c4 | 2017-10-10 13:11:19 -0400 | [diff] [blame] | 162 | |
| 163 | if (!is.null(align)) { |
| 164 | new_row <- lapply(new_row, function(x) { |
| 165 | paste0("\\\\multicolumn{1}{", align, "}{", x, "}") |
| 166 | }) |
| 167 | } |
Hao Zhu | 35ecd27 | 2017-06-11 22:50:42 -0400 | [diff] [blame] | 168 | new_row <- paste(unlist(new_row), collapse = " & ") |
Hao Zhu | 7360428 | 2017-06-11 22:08:48 -0400 | [diff] [blame] | 169 | |
Hao Zhu | a73601b | 2017-08-19 15:31:51 -0400 | [diff] [blame] | 170 | if (!is.null(background)) { |
| 171 | new_row <- paste0("\\\\rowcolor{", background, "} ", new_row) |
| 172 | } |
| 173 | |
Hao Zhu | 8d347c4 | 2017-10-10 13:11:19 -0400 | [diff] [blame] | 174 | |
| 175 | |
Hao Zhu | 322de08 | 2017-09-11 19:25:29 -0400 | [diff] [blame] | 176 | return(new_row) |
Hao Zhu | 7360428 | 2017-06-11 22:08:48 -0400 | [diff] [blame] | 177 | } |