Hao Zhu | 1fc48a6 | 2017-03-01 14:07:54 -0500 | [diff] [blame] | 1 | --- |
| 2 | title: "Create Awesome HTML Table with knitr::kable and kableExtra" |
| 3 | author: "Hao Zhu" |
| 4 | date: "`r Sys.Date()`" |
| 5 | output: |
| 6 | html_document: |
Hao Zhu | af64660 | 2017-03-01 19:22:18 -0500 | [diff] [blame] | 7 | theme: simplex |
Hao Zhu | 1fc48a6 | 2017-03-01 14:07:54 -0500 | [diff] [blame] | 8 | toc: true |
| 9 | toc_depth: 2 |
| 10 | toc_float: true |
| 11 | vignette: > |
| 12 | %\VignetteIndexEntry{Create Awesome HTML Table with knitr::kable and kableExtra} |
| 13 | %\VignetteEngine{knitr::rmarkdown} |
| 14 | %\VignetteEncoding{UTF-8} |
| 15 | --- |
| 16 | |
Hao Zhu | 0a0e833 | 2017-08-03 13:21:29 -0400 | [diff] [blame] | 17 | > Please see the package [documentation site](http://haozhu233.github.io/kableExtra/) for how to use this package in LaTeX. |
Hao Zhu | 6ce2921 | 2017-05-22 16:29:56 -0400 | [diff] [blame] | 18 | |
Hao Zhu | 1fc48a6 | 2017-03-01 14:07:54 -0500 | [diff] [blame] | 19 | # Overview |
| 20 | The goal of `kableExtra` is to help you build common complex tables and manipulate table styles. It imports the pipe `%>%` symbol from `magrittr` and verbalize all the functions, so basically you can add "layers" to a kable output in a way that is similar with `ggplot2` and `plotly`. |
| 21 | |
Hao Zhu | 4b0c51e | 2017-08-01 15:21:07 -0400 | [diff] [blame] | 22 | To learn how to generate complex tables in LaTeX, please visit [http://haozhu233.github.io/kableExtra/awesome_table_in_pdf.pdf](http://haozhu233.github.io/kableExtra/awesome_table_in_pdf.pdf) |
| 23 | |
Hao Zhu | 1fc48a6 | 2017-03-01 14:07:54 -0500 | [diff] [blame] | 24 | # Installation |
Hao Zhu | 1fc48a6 | 2017-03-01 14:07:54 -0500 | [diff] [blame] | 25 | ```r |
Hao Zhu | 74eb6ad | 2017-03-04 09:32:37 -0500 | [diff] [blame] | 26 | install.packages("kableExtra") |
| 27 | |
Hao Zhu | 1fc48a6 | 2017-03-01 14:07:54 -0500 | [diff] [blame] | 28 | # For dev version |
Hao Zhu | f9aa4c4 | 2017-05-22 15:53:35 -0400 | [diff] [blame] | 29 | # install.packages("devtools") |
Hao Zhu | 1fc48a6 | 2017-03-01 14:07:54 -0500 | [diff] [blame] | 30 | devtools::install_github("haozhu233/kableExtra") |
| 31 | ``` |
| 32 | # Getting Started |
| 33 | Here we are using the first few columns and rows from dataset `mtcars` |
| 34 | ```{r} |
| 35 | library(knitr) |
| 36 | library(kableExtra) |
| 37 | dt <- mtcars[1:5, 1:6] |
| 38 | ``` |
| 39 | |
Hao Zhu | f03decd | 2017-09-13 10:45:44 -0400 | [diff] [blame^] | 40 | When you are using `kable()`, if you don't specify `format`, by default it will generate a markdown table and let pandoc handle the conversion from markdown to HTML/PDF. This is the most favorable approach to render most simple tables as it is format independent. If you switch from HTML to pdf, you basically don't need to change anything in your code. However, markdown doesn't support complex table. For example, if you want to have a double-row header table, markdown just cannot provide you the functionality you need. As a result, when you have such a need, you should **define `format` in `kable()`** as either "html" or "latex". *You can also define a global option at the beginning using `options(knitr.table.format = "html")` so you don't repeat the step everytime.* **In this tutorial, I'll still put `format="html"` in the function in case users just want to quickly replicate the results.** |
Hao Zhu | 1fc48a6 | 2017-03-01 14:07:54 -0500 | [diff] [blame] | 41 | |
| 42 | ```{r} |
| 43 | options(knitr.table.format = "html") |
| 44 | ## If you don't define format here, you'll need put `format = "html"` in every kable function. |
| 45 | ``` |
| 46 | |
Hao Zhu | 4b0c51e | 2017-08-01 15:21:07 -0400 | [diff] [blame] | 47 | ## Basic HTML table |
Hao Zhu | 1fc48a6 | 2017-03-01 14:07:54 -0500 | [diff] [blame] | 48 | Basic HTML output of `kable` looks very crude. To the end, it's just a plain HTML table without any love from css. |
| 49 | ```{r} |
Hao Zhu | f03decd | 2017-09-13 10:45:44 -0400 | [diff] [blame^] | 50 | kable(dt, "html") |
Hao Zhu | 1fc48a6 | 2017-03-01 14:07:54 -0500 | [diff] [blame] | 51 | ``` |
| 52 | |
Hao Zhu | 4b0c51e | 2017-08-01 15:21:07 -0400 | [diff] [blame] | 53 | ## Bootstrap theme |
Hao Zhu | 1fc48a6 | 2017-03-01 14:07:54 -0500 | [diff] [blame] | 54 | When used on a HTML table, `kable_styling()` will automatically apply twitter bootstrap theme to the table. Now it should looks the same as the original pandoc output (the one when you don't specify `format` in `kable()`) but this time, you are controlling it. |
| 55 | ```{r} |
Hao Zhu | f03decd | 2017-09-13 10:45:44 -0400 | [diff] [blame^] | 56 | dt %>% |
| 57 | kable("html") %>% |
Hao Zhu | 1fc48a6 | 2017-03-01 14:07:54 -0500 | [diff] [blame] | 58 | kable_styling() |
| 59 | ``` |
| 60 | |
| 61 | # Table Styles |
Hao Zhu | 462b449 | 2017-08-03 11:31:42 -0400 | [diff] [blame] | 62 | `kable_styling` offers a few other ways to customize the look of a HTML table. |
Hao Zhu | 1fc48a6 | 2017-03-01 14:07:54 -0500 | [diff] [blame] | 63 | |
Hao Zhu | 4b0c51e | 2017-08-01 15:21:07 -0400 | [diff] [blame] | 64 | ## Bootstrap table classes |
Hao Zhu | e2706b3 | 2017-03-07 02:36:17 -0500 | [diff] [blame] | 65 | If you are familiar with twitter bootstrap, you probably have already known its predefined classes, including `striped`, `bordered`, `hover`, `condensed` and `responsive`. If you are not familiar, no worries, you can take a look at their [documentation site](http://getbootstrap.com/css/#tables) to get a sense of how they look like. All of these options are available here. |
Hao Zhu | 1fc48a6 | 2017-03-01 14:07:54 -0500 | [diff] [blame] | 66 | |
| 67 | For example, to add striped lines (alternative row colors) to your table and you want to highlight the hovered row, you can simply type: |
| 68 | ```{r} |
Hao Zhu | f03decd | 2017-09-13 10:45:44 -0400 | [diff] [blame^] | 69 | kable(dt, "html") %>% |
Hao Zhu | 1fc48a6 | 2017-03-01 14:07:54 -0500 | [diff] [blame] | 70 | kable_styling(bootstrap_options = c("striped", "hover")) |
| 71 | ``` |
| 72 | |
| 73 | The option `condensed` can also be handy in many cases when you don't want your table to be too large. It has slightly shorter row height. |
| 74 | ```{r} |
Hao Zhu | f03decd | 2017-09-13 10:45:44 -0400 | [diff] [blame^] | 75 | kable(dt, "html") %>% |
Hao Zhu | 1fc48a6 | 2017-03-01 14:07:54 -0500 | [diff] [blame] | 76 | kable_styling(bootstrap_options = c("striped", "hover", "condensed")) |
| 77 | ``` |
| 78 | |
| 79 | Tables with option `responsive` looks the same with others on a large screen. However, on a small screen like phone, they are horizontally scrollable. Please resize your window to see the result. |
| 80 | ```{r} |
Hao Zhu | f03decd | 2017-09-13 10:45:44 -0400 | [diff] [blame^] | 81 | kable(dt, "html") %>% |
Hao Zhu | 1fc48a6 | 2017-03-01 14:07:54 -0500 | [diff] [blame] | 82 | kable_styling(bootstrap_options = c("striped", "hover", "condensed", "responsive")) |
| 83 | ``` |
| 84 | |
Hao Zhu | 4b0c51e | 2017-08-01 15:21:07 -0400 | [diff] [blame] | 85 | ## Full width? |
Hao Zhu | bf4cdc6 | 2017-03-02 22:26:29 -0500 | [diff] [blame] | 86 | By default, a bootstrap table takes 100% of the width. It is supposed to use together with its grid system to scale the table properly. However, when you are writing a rmarkdown document, you probably don't want to write your own css/or grid. For some small tables with only few columns, a page wide table looks awful. To make it easier, you can specify whether you want the table to have `full_width` or not in `kable_styling`. By default, `full_width` is set to be `TRUE` for HTML tables (note that for LaTeX, the default is `FALSE` since I don't want to change the "common" looks unless you specified it.) |
Hao Zhu | 1fc48a6 | 2017-03-01 14:07:54 -0500 | [diff] [blame] | 87 | ```{r} |
Hao Zhu | f03decd | 2017-09-13 10:45:44 -0400 | [diff] [blame^] | 88 | kable(dt, "html") %>% |
Hao Zhu | 1fc48a6 | 2017-03-01 14:07:54 -0500 | [diff] [blame] | 89 | kable_styling(bootstrap_options = "striped", full_width = F) |
| 90 | ``` |
| 91 | |
| 92 | ## Position |
| 93 | Table Position only matters when the table doesn't have `full_width`. You can choose to align the table to `center`, `left` or `right` side of the page |
| 94 | ```{r} |
Hao Zhu | f03decd | 2017-09-13 10:45:44 -0400 | [diff] [blame^] | 95 | kable(dt, "html") %>% |
Hao Zhu | 1fc48a6 | 2017-03-01 14:07:54 -0500 | [diff] [blame] | 96 | kable_styling(bootstrap_options = "striped", full_width = F, position = "left") |
| 97 | ``` |
| 98 | |
| 99 | Becides these three common options, you can also wrap text around the table using the `float-left` or `float-right` options. |
| 100 | ```{r} |
Hao Zhu | f03decd | 2017-09-13 10:45:44 -0400 | [diff] [blame^] | 101 | kable(dt, "html") %>% |
Hao Zhu | 1fc48a6 | 2017-03-01 14:07:54 -0500 | [diff] [blame] | 102 | kable_styling(bootstrap_options = "striped", full_width = F, position = "float_right") |
| 103 | ``` |
| 104 | Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras sit amet mauris in ex ultricies elementum vel rutrum dolor. Phasellus tempor convallis dui, in hendrerit mauris placerat scelerisque. Maecenas a accumsan enim, a maximus velit. Pellentesque in risus eget est faucibus convallis nec at nulla. Phasellus nec lacinia justo. Morbi fermentum, orci id varius accumsan, nibh neque porttitor ipsum, consectetur luctus risus arcu ac ex. Aenean a luctus augue. Suspendisse et auctor nisl. Suspendisse cursus ultrices quam non vulputate. Phasellus et pharetra neque, vel feugiat erat. Sed feugiat elit at mauris commodo consequat. Sed congue lectus id mattis hendrerit. Mauris turpis nisl, congue eget velit sed, imperdiet convallis magna. Nam accumsan urna risus, non feugiat odio vehicula eget. |
| 105 | |
Hao Zhu | 4b0c51e | 2017-08-01 15:21:07 -0400 | [diff] [blame] | 106 | ## Font size |
Hao Zhu | 1fc48a6 | 2017-03-01 14:07:54 -0500 | [diff] [blame] | 107 | If one of your tables is huge and you want to use a smaller font size for that specific table, you can use the `font_size` option. |
| 108 | ```{r} |
Hao Zhu | f03decd | 2017-09-13 10:45:44 -0400 | [diff] [blame^] | 109 | kable(dt, "html") %>% |
Hao Zhu | 1fc48a6 | 2017-03-01 14:07:54 -0500 | [diff] [blame] | 110 | kable_styling(bootstrap_options = "striped", font_size = 7) |
| 111 | ``` |
| 112 | |
Hao Zhu | 4b0c51e | 2017-08-01 15:21:07 -0400 | [diff] [blame] | 113 | # Column / Row Specification |
| 114 | ## Column spec |
| 115 | When you have a table with lots of explanatory texts, you may want to specified the column width for different column, since the auto adjust in HTML may not work in its best way while basic LaTeX table is really bad at handling text wrapping. Also, sometimes, you may want to highlight a column (e.g. a "Total" column) by making it bold. In these scenario, you can use `column_spec()`. You can find an example below. |
| 116 | |
| 117 | Warning: If you have a super long table, you should be cautious when you use `column_spec` as the xml node modification takes time. |
| 118 | |
| 119 | ```{r} |
| 120 | text_tbl <- data.frame( |
| 121 | Items = c("Item 1", "Item 2", "Item 3"), |
| 122 | Features = c( |
| 123 | "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin vehicula tempor ex. Morbi malesuada sagittis turpis, at venenatis nisl luctus a. ", |
| 124 | "In eu urna at magna luctus rhoncus quis in nisl. Fusce in velit varius, posuere risus et, cursus augue. Duis eleifend aliquam ante, a aliquet ex tincidunt in. ", |
| 125 | "Vivamus venenatis egestas eros ut tempus. Vivamus id est nisi. Aliquam molestie erat et sollicitudin venenatis. In ac lacus at velit scelerisque mattis. " |
| 126 | ) |
| 127 | ) |
| 128 | |
Hao Zhu | f03decd | 2017-09-13 10:45:44 -0400 | [diff] [blame^] | 129 | kable(text_tbl, "html") %>% |
Hao Zhu | 4b0c51e | 2017-08-01 15:21:07 -0400 | [diff] [blame] | 130 | kable_styling(full_width = F) %>% |
Hao Zhu | a44e375 | 2017-09-05 12:56:19 -0400 | [diff] [blame] | 131 | column_spec(1, bold = T, border_right = T) %>% |
| 132 | column_spec(2, width = "30em", background = "yellow") |
Hao Zhu | 4b0c51e | 2017-08-01 15:21:07 -0400 | [diff] [blame] | 133 | ``` |
| 134 | |
| 135 | |
Hao Zhu | 0a0e833 | 2017-08-03 13:21:29 -0400 | [diff] [blame] | 136 | ## Row spec |
Hao Zhu | 4b0c51e | 2017-08-01 15:21:07 -0400 | [diff] [blame] | 137 | Similar with `column_spec`, you can define specifications for rows. Currently, you can either bold or italiciz an entire row. Note that, similar with other row-related functions in `kableExtra`, for the position of the target row, you don't need to count in header rows or the group labelling rows. |
| 138 | |
| 139 | ```{r} |
Hao Zhu | f03decd | 2017-09-13 10:45:44 -0400 | [diff] [blame^] | 140 | kable(dt, "html") %>% |
Hao Zhu | 4b0c51e | 2017-08-01 15:21:07 -0400 | [diff] [blame] | 141 | kable_styling("striped", full_width = F) %>% |
| 142 | column_spec(7, bold = T) %>% |
Hao Zhu | a44e375 | 2017-09-05 12:56:19 -0400 | [diff] [blame] | 143 | row_spec(5, bold = T, color = "white", background = "#D7261E") |
Hao Zhu | 4b0c51e | 2017-08-01 15:21:07 -0400 | [diff] [blame] | 144 | ``` |
| 145 | |
| 146 | # Grouped Columns / Rows |
| 147 | ## Add header rows to group columns |
Hao Zhu | 1fc48a6 | 2017-03-01 14:07:54 -0500 | [diff] [blame] | 148 | Tables with multi-row headers can be very useful to demonstrate grouped data. To do that, you can pipe your kable object into `add_header_above()`. The header variable is supposed to be a named character with the names as new column names and values as column span. For your convenience, if column span equals to 1, you can ignore the `=1` part so the function below can be written as `add_header_above(c(" ", "Group 1" = 2, "Group 2" = 2, "Group 3" = 2)). |
| 149 | ```{r} |
Hao Zhu | f03decd | 2017-09-13 10:45:44 -0400 | [diff] [blame^] | 150 | kable(dt, "html") %>% |
Hao Zhu | 1fc48a6 | 2017-03-01 14:07:54 -0500 | [diff] [blame] | 151 | kable_styling("striped") %>% |
| 152 | add_header_above(c(" " = 1, "Group 1" = 2, "Group 2" = 2, "Group 3" = 2)) |
| 153 | ``` |
| 154 | |
Hao Zhu | 916c366 | 2017-06-21 15:55:05 -0400 | [diff] [blame] | 155 | In fact, if you want to add another row of header on top, please feel free to do so. |
Hao Zhu | 1fc48a6 | 2017-03-01 14:07:54 -0500 | [diff] [blame] | 156 | ```{r} |
Hao Zhu | f03decd | 2017-09-13 10:45:44 -0400 | [diff] [blame^] | 157 | kable(dt, "html") %>% |
Hao Zhu | 1fc48a6 | 2017-03-01 14:07:54 -0500 | [diff] [blame] | 158 | kable_styling(c("striped", "bordered")) %>% |
| 159 | add_header_above(c(" ", "Group 1" = 2, "Group 2" = 2, "Group 3" = 2)) %>% |
| 160 | add_header_above(c(" ", "Group 4" = 4, "Group 5" = 2)) %>% |
| 161 | add_header_above(c(" ", "Group 6" = 6)) |
| 162 | ``` |
| 163 | |
Hao Zhu | 4b0c51e | 2017-08-01 15:21:07 -0400 | [diff] [blame] | 164 | ## Group rows via labeling |
| 165 | Sometimes we want a few rows of the table being grouped together. They might be items under the same topic (e.g., animals in one species) or just different data groups for a categorical variable (e.g., age < 40, age > 40). With the new function `group_rows()` in `kableExtra`, this kind of task can be completed in one line. Please see the example below. Note that when you count for the start/end rows of the group, you don't need to count for the header rows nor other group label rows. You only need to think about the row numbers in the "original R dataframe". |
| 166 | ```{r} |
Hao Zhu | f03decd | 2017-09-13 10:45:44 -0400 | [diff] [blame^] | 167 | kable(mtcars[1:10, 1:6], "html", caption = "Group Rows") %>% |
Hao Zhu | 4b0c51e | 2017-08-01 15:21:07 -0400 | [diff] [blame] | 168 | kable_styling("striped", full_width = F) %>% |
| 169 | group_rows("Group 1", 4, 7) %>% |
| 170 | group_rows("Group 2", 8, 10) |
| 171 | ``` |
| 172 | |
| 173 | For advanced users, you can even define your own css for the group labeling. |
| 174 | ```{r} |
Hao Zhu | f03decd | 2017-09-13 10:45:44 -0400 | [diff] [blame^] | 175 | kable(dt, "html") %>% |
Hao Zhu | 4b0c51e | 2017-08-01 15:21:07 -0400 | [diff] [blame] | 176 | kable_styling("striped", full_width = F) %>% |
| 177 | group_rows("Group 1", 3, 5, label_row_css = "background-color: #666; color: #fff;") |
| 178 | ``` |
| 179 | |
| 180 | ## Row indentation |
| 181 | Unlike `group_rows()`, which will insert a labeling row, sometimes we want to list a few sub groups under a total one. In that case, `add_indent()` is probably more apporiate. |
| 182 | For advanced users, you can even define your own css for the group labeling. |
| 183 | ```{r} |
Hao Zhu | f03decd | 2017-09-13 10:45:44 -0400 | [diff] [blame^] | 184 | kable(dt, "html") %>% |
Hao Zhu | 4b0c51e | 2017-08-01 15:21:07 -0400 | [diff] [blame] | 185 | kable_styling("striped", full_width = F) %>% |
| 186 | add_indent(c(1, 3, 5)) |
| 187 | ``` |
| 188 | |
| 189 | ## Group rows via multi-row cell |
| 190 | Function `group_rows` is great for showing simple structural information on rows but sometimes people may need to show structural information with multiple layers. When it happens, you may consider to use `collapse_rows` instead, which will put repeating cells in columns into multi-row cells. |
| 191 | |
| 192 | ```{r} |
| 193 | collapse_rows_dt <- data.frame(C1 = c(rep("a", 10), rep("b", 5)), |
| 194 | C2 = c(rep("c", 7), rep("d", 3), rep("c", 2), rep("d", 3)), |
| 195 | C3 = 1:15, |
| 196 | C4 = sample(c(0,1), 15, replace = TRUE)) |
| 197 | kable(collapse_rows_dt, "html", align = "c") %>% |
| 198 | kable_styling(full_width = F) %>% |
| 199 | column_spec(1, bold = T) %>% |
| 200 | collapse_rows(columns = 1:2) |
| 201 | ``` |
| 202 | |
| 203 | # Table Footnote |
| 204 | ## Notation systems |
Hao Zhu | 1fc48a6 | 2017-03-01 14:07:54 -0500 | [diff] [blame] | 205 | You can also use `add_footnote()` function from this package. You will need to supply a character vector with each element as one footnote. You may select from `number`, `alphabet` and `symbol` for different types of notations. Example are listed below. |
| 206 | |
| 207 | ### Alphabet |
| 208 | ```{r} |
Hao Zhu | f03decd | 2017-09-13 10:45:44 -0400 | [diff] [blame^] | 209 | kable(dt, "html") %>% |
Hao Zhu | 1fc48a6 | 2017-03-01 14:07:54 -0500 | [diff] [blame] | 210 | kable_styling("striped") %>% |
| 211 | add_footnote(c("Footnote 1", "Have a good day."), notation = "alphabet") |
| 212 | ``` |
| 213 | |
| 214 | ### Number |
| 215 | ```{r} |
Hao Zhu | f03decd | 2017-09-13 10:45:44 -0400 | [diff] [blame^] | 216 | kable(dt, "html") %>% |
Hao Zhu | 1fc48a6 | 2017-03-01 14:07:54 -0500 | [diff] [blame] | 217 | kable_styling("striped") %>% |
| 218 | add_footnote(c("Footnote 1", "Have a good day."), notation = "number") |
| 219 | ``` |
| 220 | |
| 221 | ### Symbol |
| 222 | ```{r} |
Hao Zhu | f03decd | 2017-09-13 10:45:44 -0400 | [diff] [blame^] | 223 | kable(dt, "html") %>% |
Hao Zhu | 1fc48a6 | 2017-03-01 14:07:54 -0500 | [diff] [blame] | 224 | kable_styling("striped") %>% |
| 225 | add_footnote(c("Footnote 1", "Footnote 2", "Footnote 3"), notation = "symbol") |
| 226 | ``` |
| 227 | |
| 228 | ## In-table markers |
| 229 | By design, `add_footnote()` will transform any `[note]` to in-table footnote markers. |
Hao Zhu | 4b0c51e | 2017-08-01 15:21:07 -0400 | [diff] [blame] | 230 | |
Hao Zhu | 1fc48a6 | 2017-03-01 14:07:54 -0500 | [diff] [blame] | 231 | ```{r} |
Hao Zhu | f03decd | 2017-09-13 10:45:44 -0400 | [diff] [blame^] | 232 | kable(dt, "html", caption = "Demo Table[note]") %>% |
Hao Zhu | 1fc48a6 | 2017-03-01 14:07:54 -0500 | [diff] [blame] | 233 | kable_styling("striped") %>% |
| 234 | add_header_above(c(" ", "Group 1[note]" = 3, "Group 2[note]" = 3)) %>% |
| 235 | add_footnote(c("This table is from mtcars", |
| 236 | "Group 1 contains mpg, cyl and disp", |
| 237 | "Group 2 contains hp, drat and wt"), |
| 238 | notation = "symbol") |
| 239 | ``` |
Hao Zhu | f9aa4c4 | 2017-05-22 15:53:35 -0400 | [diff] [blame] | 240 | |
Hao Zhu | 4b0c51e | 2017-08-01 15:21:07 -0400 | [diff] [blame] | 241 | # HTML Only Features |
| 242 | ## Scroll box |
| 243 | If you have a huge table and you don't want to reduce the font size to unreadable, you may want to put your HTML table in a scroll box, of which users can pick the part they like to read. Note that scroll box isn't printer friendly, so be aware of that when you use this feature. |
Hao Zhu | f9aa4c4 | 2017-05-22 15:53:35 -0400 | [diff] [blame] | 244 | |
Hao Zhu | 4b0c51e | 2017-08-01 15:21:07 -0400 | [diff] [blame] | 245 | When you use `scroll_box`, you can specify either `height` or `width`. When you specify `height`, you will get a vertically scrollable box and vice versa. If you specify both, you will get a two-way scrollable box. |
Hao Zhu | 6ff9d50 | 2017-06-13 17:13:03 -0400 | [diff] [blame] | 246 | |
| 247 | ```{r} |
Hao Zhu | f03decd | 2017-09-13 10:45:44 -0400 | [diff] [blame^] | 248 | kable(cbind(mtcars, mtcars), "html") %>% |
Hao Zhu | 4b0c51e | 2017-08-01 15:21:07 -0400 | [diff] [blame] | 249 | kable_styling() %>% |
| 250 | scroll_box(width = "500px", height = "200px") |
Hao Zhu | 6ff9d50 | 2017-06-13 17:13:03 -0400 | [diff] [blame] | 251 | ``` |
Hao Zhu | 2ce42b9 | 2017-06-15 17:15:33 -0400 | [diff] [blame] | 252 | |