Hao Zhu | bff0191 | 2017-05-23 18:05:00 -0400 | [diff] [blame] | 1 | #' Specify the look of the selected column |
| 2 | #' |
| 3 | #' @description This function allows users to select a column and then specify |
| 4 | #' its look. Right now it supports the following three properties: column width, |
| 5 | #' bold text and italic text. |
| 6 | #' |
| 7 | #' @param kable_input Output of `knitr::kable()` with `format` specified |
Hao Zhu | bf5bfe2 | 2017-06-21 14:37:41 -0400 | [diff] [blame] | 8 | #' @param column A numeric value indicating which column to be selected. When |
| 9 | #' you do the counting, ignore the extra header columns you added through |
| 10 | #' add_header_left. |
Hao Zhu | bff0191 | 2017-05-23 18:05:00 -0400 | [diff] [blame] | 11 | #' @param width A character string telling HTML & LaTeX how wide the column |
| 12 | #' needs to be, e.g. "10cm", "3in" or "30em". |
| 13 | #' @param bold A T/F value to control whether the text of the selected column |
| 14 | #' need to be bolded. |
| 15 | #' @param italic A T/F value to control whether the text of the selected column |
| 16 | #' need to be emphasized. |
Hao Zhu | 8f20299 | 2017-07-15 02:20:18 -0400 | [diff] [blame] | 17 | #' @param monospace A T/F value to control whether the text of the selected column |
| 18 | #' need to be monospaced (verbatim) |
Hao Zhu | 78e6122 | 2017-05-24 20:53:35 -0400 | [diff] [blame] | 19 | #' |
| 20 | #' @examples x <- knitr::kable(head(mtcars), "html") |
| 21 | #' column_spec(x, 1, width = "20em", bold = TRUE, italic = TRUE) |
| 22 | #' |
Hao Zhu | bff0191 | 2017-05-23 18:05:00 -0400 | [diff] [blame] | 23 | #' @export |
Hao Zhu | f13a35e | 2017-05-24 00:55:43 -0400 | [diff] [blame] | 24 | column_spec <- function(kable_input, column, |
Hao Zhu | 8f20299 | 2017-07-15 02:20:18 -0400 | [diff] [blame] | 25 | width = NULL, bold = FALSE, italic = FALSE, |
| 26 | monospace = FALSE) { |
Hao Zhu | bff0191 | 2017-05-23 18:05:00 -0400 | [diff] [blame] | 27 | if (!is.numeric(column)) { |
| 28 | stop("column must be a numeric value") |
| 29 | } |
| 30 | kable_format <- attr(kable_input, "format") |
| 31 | if (!kable_format %in% c("html", "latex")) { |
| 32 | message("Currently generic markdown table using pandoc is not supported.") |
| 33 | return(kable_input) |
| 34 | } |
| 35 | if (kable_format == "html") { |
Hao Zhu | 8f20299 | 2017-07-15 02:20:18 -0400 | [diff] [blame] | 36 | return(column_spec_html(kable_input, column, width, bold, italic, monospace)) |
Hao Zhu | bff0191 | 2017-05-23 18:05:00 -0400 | [diff] [blame] | 37 | } |
| 38 | if (kable_format == "latex") { |
Hao Zhu | 8f20299 | 2017-07-15 02:20:18 -0400 | [diff] [blame] | 39 | return(column_spec_latex(kable_input, column, width, bold, italic, monospace)) |
Hao Zhu | bff0191 | 2017-05-23 18:05:00 -0400 | [diff] [blame] | 40 | } |
| 41 | } |
| 42 | |
Hao Zhu | 8f20299 | 2017-07-15 02:20:18 -0400 | [diff] [blame] | 43 | column_spec_html <- function(kable_input, column, width, bold, italic, monospace) { |
Hao Zhu | bff0191 | 2017-05-23 18:05:00 -0400 | [diff] [blame] | 44 | kable_attrs <- attributes(kable_input) |
Hao Zhu | 558c72f | 2017-07-24 15:12:00 -0400 | [diff] [blame] | 45 | kable_xml <- read_kable_as_xml(kable_input) |
Hao Zhu | bff0191 | 2017-05-23 18:05:00 -0400 | [diff] [blame] | 46 | kable_tbody <- xml_tpart(kable_xml, "tbody") |
| 47 | |
| 48 | group_header_rows <- attr(kable_input, "group_header_rows") |
Hao Zhu | 32f43f7 | 2017-06-20 18:24:54 -0400 | [diff] [blame] | 49 | if (is.null(kable_attrs$column_adjust)) { |
| 50 | all_contents_rows <- seq(1, length(xml_children(kable_tbody))) |
| 51 | all_contents_array <- rep(column, length(all_contents_rows)) |
| 52 | } else { |
| 53 | column <- column + kable_attrs$column_adjust$count |
| 54 | all_contents_array <- colSums(kable_attrs$column_adjust$matrix[1:column, ]) |
| 55 | all_contents_rows <- which(all_contents_array != 0 & |
| 56 | kable_attrs$column_adjust$matrix[column, ]) |
| 57 | } |
| 58 | |
Hao Zhu | bff0191 | 2017-05-23 18:05:00 -0400 | [diff] [blame] | 59 | if (!is.null(group_header_rows)) { |
| 60 | all_contents_rows <- all_contents_rows[!all_contents_rows %in% |
| 61 | group_header_rows] |
| 62 | } |
| 63 | |
| 64 | for (i in all_contents_rows) { |
Hao Zhu | 32f43f7 | 2017-06-20 18:24:54 -0400 | [diff] [blame] | 65 | target_cell <- xml_child(xml_child(kable_tbody, i), all_contents_array[i]) |
Hao Zhu | bff0191 | 2017-05-23 18:05:00 -0400 | [diff] [blame] | 66 | if (!is.null(width)) { |
| 67 | xml_attr(target_cell, "style") <- paste0(xml_attr(target_cell, "style"), |
| 68 | "width: ", width, "; ") |
| 69 | } |
| 70 | if (bold) { |
| 71 | xml_attr(target_cell, "style") <- paste0(xml_attr(target_cell, "style"), |
| 72 | "font-weight: bold;") |
| 73 | } |
| 74 | if (italic) { |
| 75 | xml_attr(target_cell, "style") <- paste0(xml_attr(target_cell, "style"), |
| 76 | "font-style: italic;") |
| 77 | } |
Hao Zhu | 8f20299 | 2017-07-15 02:20:18 -0400 | [diff] [blame] | 78 | if (monospace) { |
| 79 | xml_attr(target_cell, "style") <- paste0(xml_attr(target_cell, "style"), |
| 80 | "font-family: monospace;") |
| 81 | } |
Hao Zhu | bff0191 | 2017-05-23 18:05:00 -0400 | [diff] [blame] | 82 | } |
Hao Zhu | f2dfd14 | 2017-07-24 14:43:28 -0400 | [diff] [blame] | 83 | out <- as_kable_xml(kable_xml) |
Hao Zhu | bff0191 | 2017-05-23 18:05:00 -0400 | [diff] [blame] | 84 | attributes(out) <- kable_attrs |
| 85 | return(out) |
| 86 | } |
| 87 | |
Hao Zhu | 8f20299 | 2017-07-15 02:20:18 -0400 | [diff] [blame] | 88 | column_spec_latex <- function(kable_input, column, width, bold, italic, monospace) { |
Hao Zhu | bff0191 | 2017-05-23 18:05:00 -0400 | [diff] [blame] | 89 | table_info <- magic_mirror(kable_input) |
Hao Zhu | f4b3529 | 2017-06-25 22:38:37 -1000 | [diff] [blame] | 90 | if (!is.null(table_info$collapse_rows)) { |
| 91 | message("Usually it is recommended to use column_spec before collapse_rows,", |
| 92 | " especially in LaTeX, to get a desired result. ") |
| 93 | } |
Hao Zhu | bff0191 | 2017-05-23 18:05:00 -0400 | [diff] [blame] | 94 | align_collapse <- ifelse(table_info$booktabs, "", "\\|") |
| 95 | kable_align_old <- paste(table_info$align_vector, collapse = align_collapse) |
| 96 | |
Hao Zhu | 32f43f7 | 2017-06-20 18:24:54 -0400 | [diff] [blame] | 97 | table_info$align_vector[column] <- latex_column_align_builder( |
Hao Zhu | 8f20299 | 2017-07-15 02:20:18 -0400 | [diff] [blame] | 98 | table_info$align_vector[column], width, bold, italic, monospace) |
Hao Zhu | bff0191 | 2017-05-23 18:05:00 -0400 | [diff] [blame] | 99 | |
| 100 | kable_align_new <- paste(table_info$align_vector, collapse = align_collapse) |
| 101 | |
| 102 | out <- sub(kable_align_old, kable_align_new, as.character(kable_input), |
| 103 | perl = T) |
| 104 | out <- structure(out, format = "latex", class = "knitr_kable") |
Hao Zhu | f4b3529 | 2017-06-25 22:38:37 -1000 | [diff] [blame] | 105 | if (!is.null(width)) { |
| 106 | if (is.null(table_info$column_width)) { |
| 107 | table_info$column_width <- list() |
| 108 | } |
| 109 | table_info$column_width[[paste0("column_", column)]] <- width |
| 110 | } |
Hao Zhu | 32f43f7 | 2017-06-20 18:24:54 -0400 | [diff] [blame] | 111 | attr(out, "kable_meta") <- table_info |
Hao Zhu | bff0191 | 2017-05-23 18:05:00 -0400 | [diff] [blame] | 112 | return(out) |
| 113 | } |
Hao Zhu | 32f43f7 | 2017-06-20 18:24:54 -0400 | [diff] [blame] | 114 | |
Hao Zhu | 8f20299 | 2017-07-15 02:20:18 -0400 | [diff] [blame] | 115 | latex_column_align_builder <- function(x, width, bold, italic, monospace) { |
Hao Zhu | 32f43f7 | 2017-06-20 18:24:54 -0400 | [diff] [blame] | 116 | extra_align <- "" |
| 117 | if (!is.null(width)) { |
| 118 | extra_align <- switch(x, |
Hao Zhu | bf5bfe2 | 2017-06-21 14:37:41 -0400 | [diff] [blame] | 119 | "l" = "\\\\raggedright\\\\arraybackslash", |
| 120 | "c" = "\\\\centering\\\\arraybackslash", |
| 121 | "r" = "\\\\raggedleft\\\\arraybackslash") |
Hao Zhu | 32f43f7 | 2017-06-20 18:24:54 -0400 | [diff] [blame] | 122 | x <- paste0("p\\{", width, "\\}") |
| 123 | } |
| 124 | |
Hao Zhu | 8f20299 | 2017-07-15 02:20:18 -0400 | [diff] [blame] | 125 | if (bold | italic | monospace | extra_align != "") { |
| 126 | latex_array_options <- c("\\\\bfseries", "\\\\em", "\\\\ttfamily")[ |
| 127 | c(bold, italic, monospace)] |
Hao Zhu | 32f43f7 | 2017-06-20 18:24:54 -0400 | [diff] [blame] | 128 | latex_array_options <- c(latex_array_options, extra_align) |
| 129 | latex_array_options <- paste0( |
| 130 | "\\>\\{", paste(latex_array_options, collapse = ""), "\\}" |
| 131 | ) |
| 132 | x <- paste0(latex_array_options, x) |
| 133 | } |
| 134 | |
| 135 | return(x) |
| 136 | } |