Hao Zhu | 62cdde5 | 2017-05-20 22:16:03 -0400 | [diff] [blame] | 1 | #' Put a few rows of a table into one category |
| 2 | #' |
Hao Zhu | bd95bb2 | 2017-05-22 16:08:49 -0400 | [diff] [blame] | 3 | #' @description Group a few rows in a table together under a label. |
| 4 | #' |
| 5 | #' @param kable_input Output of `knitr::kable()` with `format` specified |
| 6 | #' @param group_label A character string for the name of the group |
| 7 | #' @param start_row A numeric value that tells the function in which row the |
| 8 | #' group starts. Note that the counting excludes header rows and other group |
| 9 | #' labeling rows |
| 10 | #' @param end_row A numeric value that tells the function in which row the group |
| 11 | #' ends. |
| 12 | #' @param label_row_css A character string for any customized css used for the |
| 13 | #' labeling row. By default, the labeling row will have a solid black line |
| 14 | #' underneath. Only useful for HTML documents. |
| 15 | #' @param latex_gap_space A character value telling LaTeX how large the gap |
| 16 | #' between the previous row and the group labeling row. Only useful for LaTeX |
| 17 | #' documents. |
| 18 | #' |
Hao Zhu | 78e6122 | 2017-05-24 20:53:35 -0400 | [diff] [blame] | 19 | #' @examples x <- knitr::kable(head(mtcars), "html") |
| 20 | #' # Put Row 2 to Row 5 into a Group and label it as "Group A" |
| 21 | #' group_rows(x, "Group A", 2, 5) |
| 22 | #' |
Hao Zhu | 62cdde5 | 2017-05-20 22:16:03 -0400 | [diff] [blame] | 23 | #' @export |
Hao Zhu | d972e7f | 2017-05-22 13:27:15 -0400 | [diff] [blame] | 24 | group_rows <- function(kable_input, group_label, start_row, end_row, |
| 25 | label_row_css = "border-bottom: 1px solid;", |
| 26 | latex_gap_space = "0.5em") { |
| 27 | if (!is.numeric(c(start_row, end_row))) { |
| 28 | stop("Start_row and end_row must be numeric position of rows (excluding", |
| 29 | "header rows and other group-title rows). ") |
| 30 | } |
Hao Zhu | 62cdde5 | 2017-05-20 22:16:03 -0400 | [diff] [blame] | 31 | kable_format <- attr(kable_input, "format") |
| 32 | if (!kable_format %in% c("html", "latex")) { |
| 33 | message("Currently generic markdown table using pandoc is not supported.") |
| 34 | return(kable_input) |
| 35 | } |
| 36 | if (kable_format == "html") { |
Hao Zhu | d972e7f | 2017-05-22 13:27:15 -0400 | [diff] [blame] | 37 | return(group_rows_html(kable_input, group_label, start_row, end_row, |
| 38 | label_row_css)) |
Hao Zhu | 62cdde5 | 2017-05-20 22:16:03 -0400 | [diff] [blame] | 39 | } |
| 40 | if (kable_format == "latex") { |
Hao Zhu | d972e7f | 2017-05-22 13:27:15 -0400 | [diff] [blame] | 41 | return(group_rows_latex(kable_input, group_label, start_row, end_row, |
| 42 | latex_gap_space)) |
Hao Zhu | 62cdde5 | 2017-05-20 22:16:03 -0400 | [diff] [blame] | 43 | } |
| 44 | } |
| 45 | |
Hao Zhu | d972e7f | 2017-05-22 13:27:15 -0400 | [diff] [blame] | 46 | group_rows_html <- function(kable_input, group_label, start_row, end_row, |
| 47 | label_row_css) { |
Hao Zhu | 62cdde5 | 2017-05-20 22:16:03 -0400 | [diff] [blame] | 48 | kable_attrs <- attributes(kable_input) |
| 49 | kable_xml <- read_xml(as.character(kable_input), options = "COMPACT") |
| 50 | kable_tbody <- xml_tpart(kable_xml, "tbody") |
| 51 | |
| 52 | group_header_rows <- attr(kable_input, "group_header_rows") |
| 53 | group_seq <- seq(start_row, end_row) |
| 54 | if (!is.null(group_header_rows)) { |
| 55 | group_seq <- positions_corrector(group_seq, group_header_rows, |
| 56 | length(xml_children(kable_tbody))) |
| 57 | } |
| 58 | |
| 59 | # Insert a group header row |
| 60 | starting_node <- xml_child(kable_tbody, group_seq[1]) |
| 61 | kable_ncol <- length(xml_children(starting_node)) |
| 62 | group_header_row_text <- paste0( |
Hao Zhu | d972e7f | 2017-05-22 13:27:15 -0400 | [diff] [blame] | 63 | '<tr groupLength="', length(group_seq), '"><td colspan="', kable_ncol, |
| 64 | '" style="', label_row_css, '"><strong>', group_label, |
| 65 | "</strong></td></tr>" |
Hao Zhu | 62cdde5 | 2017-05-20 22:16:03 -0400 | [diff] [blame] | 66 | ) |
| 67 | group_header_row <- read_xml(group_header_row_text, options = "COMPACT") |
| 68 | xml_add_sibling(starting_node, group_header_row, .where = "before") |
| 69 | |
| 70 | # add indentations to items |
Hao Zhu | f2dfd14 | 2017-07-24 14:43:28 -0400 | [diff] [blame] | 71 | out <- as_kable_xml(kable_xml) |
Hao Zhu | 62cdde5 | 2017-05-20 22:16:03 -0400 | [diff] [blame] | 72 | attributes(out) <- kable_attrs |
| 73 | attr(out, "group_header_rows") <- c(attr(out, "group_header_rows"), group_seq[1]) |
| 74 | out <- add_indent(out, positions = seq(start_row, end_row)) |
| 75 | return(out) |
| 76 | } |
Hao Zhu | d972e7f | 2017-05-22 13:27:15 -0400 | [diff] [blame] | 77 | |
Hao Zhu | fc14c9b | 2017-05-22 14:03:22 -0400 | [diff] [blame] | 78 | group_rows_latex <- function(kable_input, group_label, start_row, end_row, |
| 79 | gap_space) { |
Hao Zhu | d972e7f | 2017-05-22 13:27:15 -0400 | [diff] [blame] | 80 | table_info <- magic_mirror(kable_input) |
| 81 | out <- kable_input |
| 82 | |
| 83 | # Add group label |
| 84 | rowtext <- table_info$contents[start_row + 1] |
| 85 | if (table_info$booktabs) { |
| 86 | new_rowtext <- paste0( |
| 87 | "\\\\addlinespace[", gap_space, "]\n", |
| 88 | "\\\\multicolumn{", table_info$ncol, "}{l}{\\\\textbf{", group_label, |
| 89 | "}}\\\\\\\\\n", |
| 90 | rowtext |
| 91 | ) |
Hao Zhu | d972e7f | 2017-05-22 13:27:15 -0400 | [diff] [blame] | 92 | } else { |
| 93 | rowtext <- paste0("\\\\hline\n", rowtext) |
| 94 | new_rowtext <- paste0( |
| 95 | "\\\\hline\n\\\\multicolumn{", table_info$ncol, "}{l}{\\\\textbf{", |
| 96 | group_label, "}}\\\\\\\\\n", rowtext |
| 97 | ) |
| 98 | } |
| 99 | out <- sub(rowtext, new_rowtext, out) |
Hao Zhu | 8f20299 | 2017-07-15 02:20:18 -0400 | [diff] [blame] | 100 | out <- gsub("\\\\addlinespace\n", "", out) |
Hao Zhu | 32f43f7 | 2017-06-20 18:24:54 -0400 | [diff] [blame] | 101 | table_info$group_rows_used <- TRUE |
| 102 | attr(out, "kable_meta") <- table_info |
Hao Zhu | d972e7f | 2017-05-22 13:27:15 -0400 | [diff] [blame] | 103 | out <- add_indent(out, seq(start_row, end_row)) |
| 104 | return(out) |
| 105 | } |