blob: 6ba45ac0a40063fafbe36f340d7dca9b8b866e24 [file] [log] [blame]
Hao Zhu6a076462017-03-01 12:59:01 -05001---
2title: "Create Awesome LaTeX Table with knitr::kable and kableExtra"
3author: "Hao Zhu"
4date: "`r Sys.Date()`"
5output:
6 pdf_document:
7 toc: true
8 toc_depth: 2
Hao Zhu6a076462017-03-01 12:59:01 -05009---
10
Hao Zhu6a076462017-03-01 12:59:01 -050011# Overview
12The 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`.
13
14# Installation
Hao Zhu6a076462017-03-01 12:59:01 -050015```r
Hao Zhu74eb6ad2017-03-04 09:32:37 -050016install.packages("kableExtra")
17
Hao Zhu6a076462017-03-01 12:59:01 -050018# For dev version
Hao Zhuf9aa4c42017-05-22 15:53:35 -040019# install.packages("devtools")
Hao Zhu6a076462017-03-01 12:59:01 -050020devtools::install_github("haozhu233/kableExtra")
21```
Hao Zhuf9aa4c42017-05-22 15:53:35 -040022
Hao Zhu6a076462017-03-01 12:59:01 -050023# Getting Started
24Here we are using the first few columns and rows from dataset `mtcars`
25```{r}
26library(knitr)
27library(kableExtra)
28dt <- mtcars[1:5, 1:6]
29```
30
31When 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.*
32
33```{r}
34options(knitr.table.format = "latex")
35## If you don't define format here, you'll need put `format = "latex"`
36## in every kable function.
37```
38
39## Plain LaTeX
40Plain LaTeX table looks relatively ugly in 2017.
41```{r}
42kable(dt)
43```
44
45## LaTeX Table with Booktabs
46Similar with Bootstrap in HTML, in LaTeX, you can also use a trick to make your table look prettier as well. The different part is that, this time you don't need to pipe kable outputs to another function. Instead, you should call `booktabs = T` directly in `kable()`
47```{r}
48kable(dt, booktabs = T)
49```
50
51# Table Styles
52`kable_styling` in LaTeX uses the same syntax and structure as `kable_styling` in HTML. However, instead of `bootstrap_options`, you should specify `latex_options` instead.
53
54## LaTeX Options
55Similar with `bootstap_options`, `latex_options` is also a charter vector with a bunch of options including `striped`, `hold_position` and `scale_down`.
56
57### Striped
58Even though in the LaTeX world, people usually call it `alternative row colors` but here I'm using its bootstrap name for consistency. Note that to make it happen, LaTeX package `xcolor` is required to be loaded. In an environment like rmarkdown::pdf_document (rmarkdown 1.4.0 +), `kable_styling` will load it automatically if `striped` is enabled. However, in other cases, you probably need to import that package by yourself.
59```{r}
60kable(dt, booktabs = T) %>%
61 kable_styling(latex_options = "striped")
62```
63
64### Hold Position
65If you provide a table caption in `kable()`, it will put your LaTeX tabular in a `table` environment, unless you are using `longtable`. A `table` environment will automatically find the best place (it thinks) to put your table. However, in many cases, you do want your table to appear in a position you want it to be. In this case, you can use this `hold_position` options here.
66```{r}
67kable(dt, caption = "Demo table", booktabs = T) %>%
68 kable_styling(latex_options = c("striped", "hold_position"))
69```
70
71### Scale down
Hao Zhuf9aa4c42017-05-22 15:53:35 -040072When you have a wide table that will normally go out of the page and you want to scale down the table to fit the page, you can use the `scale_down` option here. Note that, if your table is too small, it will also scale up your table. It was named in this way only because scaling up isn't very useful in most cases.
Hao Zhu6a076462017-03-01 12:59:01 -050073```{r}
74kable(cbind(dt, dt, dt), booktabs = T) %>%
75 kable_styling(latex_options = c("striped", "scale_down"))
76```
77```{r}
78kable(cbind(dt), booktabs = T) %>%
79 kable_styling(latex_options = c("striped", "scale_down"))
80```
81
Hao Zhu6ff9d502017-06-13 17:13:03 -040082### Repeat Header in longtable (only available in kableExtra 0.3.0)
83In this `kableExtra` 0.3.0, a new option `repeat_header` was introduced into `kable_styling`. It will add header rows to longtables spanning multiple pages. For table captions on following pages, it will append *"continued"* to the caption to differentiate. If you need texts other than *"(continued)"* (for example, other languages), you can specify it using `kable_styling(..., repeat_header_text = "xxx")`.
84```{r}
85long_dt <- rbind(mtcars, mtcars)
86
87kable(long_dt, longtable = T, booktabs = T, caption = "Longtable") %>%
88 add_header_above(c(" ", "Group 1" = 5, "Group 2" = 6)) %>%
89 kable_styling(latex_options = c("repeat_header"))
90```
91
Hao Zhu6a076462017-03-01 12:59:01 -050092
Hao Zhuf9aa4c42017-05-22 15:53:35 -040093## Full Width
94If you have a small table and you want it to spread wide on the page, you can try the `full_width` option. Unlike `scale_down`, it won't change your font size. Note that, if you use `full_width` in LaTeX, you will loss your in-cell text alignment settings and everything will be left-aligned.
Hao Zhu6a076462017-03-01 12:59:01 -050095```{r}
96kable(dt, booktabs = T) %>%
97 kable_styling(full_width = T)
98```
99
100## Position
101Table Position only matters when the table doesn't have `full_width`. You can choose to align the table to `center` or `left` side of the page. The default value of position is `center`.
102
103Note that even though you can select to `right` align your table but the table will actually be centered. Somehow it is very difficult to right align a table in LaTeX (since it's not very useful in the real world?). If you know how to do it, please send out an issue or PR and let me know.
104```{r}
105kable(dt, booktabs = T) %>%
106 kable_styling(position = "center")
107```
108
109Becides these three common options, you can also wrap text around the table using the `float-left` or `float-right` options. Note that, like `striped`, this feature will load another non-default LaTeX package `wrapfig` which requires rmarkdown 1.4.0 +. If you rmarkdown version < 1.4.0, you need to load the package through a customed LaTeX template file.
110```{r}
111kable(dt, booktabs = T) %>%
112 kable_styling(position = "float_right")
113```
114Lorem 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.
115
116## Font Size
117If 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.
118```{r}
119kable(dt, booktabs = T) %>%
120 kable_styling(font_size = 7)
121```
122
123# Add Extra Header Rows
124Tables 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)).
125```{r}
126kable(dt, booktabs = T) %>%
127 kable_styling() %>%
128 add_header_above(c(" " = 1, "Group 1" = 2, "Group 2" = 2, "Group 3" = 2))
129```
130
Hao Zhu916c3662017-06-21 15:55:05 -0400131In fact, if you want to add another row of header on top, please feel free to do so. Also, in kableExtra 0.3.0, you can specify `bold` & `italic` as you do in `row_spec()`.
Hao Zhu6a076462017-03-01 12:59:01 -0500132```{r}
133kable(dt, booktabs = T) %>%
134 kable_styling() %>%
135 add_header_above(c(" ", "Group 1" = 2, "Group 2" = 2, "Group 3" = 2)) %>%
136 add_header_above(c(" ", "Group 4" = 4, "Group 5" = 2)) %>%
Hao Zhu916c3662017-06-21 15:55:05 -0400137 add_header_above(c(" ", "Group 6" = 6), bold = T, italic = T)
Hao Zhu6a076462017-03-01 12:59:01 -0500138```
139
140# Add footnote
141## Notation System
142You 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.
143
144### Alphabet
145```{r}
146kable(dt, booktabs = T) %>%
147 kable_styling() %>%
148 add_footnote(c("Footnote 1", "Have a good day."), notation = "alphabet")
149```
150
151### Number
152```{r}
153kable(dt, booktabs = T) %>%
154 kable_styling() %>%
155 add_footnote(c("Footnote 1", "Have a good day."), notation = "number")
156```
157
158### Symbol
159```{r}
160kable(dt, booktabs = T) %>%
161 kable_styling() %>%
162 add_footnote(c("Footnote 1", "Footnote 2", "Footnote 3"), notation = "symbol")
163```
164
165## In-table markers
166By design, `add_footnote()` will transform any `[note]` to in-table footnote markers.
167```{r}
168kable(dt, caption = "Demo Table[note]", booktabs = T) %>%
169 kable_styling(latex_options = "hold_position") %>%
170 add_header_above(c(" ", "Group 1[note]" = 3, "Group 2[note]" = 3)) %>%
171 add_footnote(c("This table is from mtcars",
172 "Group 1 contains mpg, cyl and disp",
173 "Group 2 contains hp, drat and wt"),
174 notation = "symbol")
175```
Hao Zhuf9aa4c42017-05-22 15:53:35 -0400176
Hao Zhuf9aa4c42017-05-22 15:53:35 -0400177
Hao Zhu4278c632017-05-24 01:02:50 -0400178***
179
180The following features are introduced in `kableExtra` 0.2.0.
Hao Zhuf9aa4c42017-05-22 15:53:35 -0400181
182# Group Rows
183Sometimes 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".
184```{r}
185kable(mtcars[1:10, 1:6], caption = "Group Rows", booktabs = T) %>%
186 kable_styling() %>%
187 group_rows("Group 1", 4, 7) %>%
188 group_rows("Group 2", 8, 10)
189```
190
191In case some users need it, you can define your own gapping spaces between the group labeling row and previous rows. The default value is `0.5em`.
192```{r}
193kable(dt, booktabs = T) %>%
194 group_rows("Group 1", 4, 5, latex_gap_space = "2em")
195```
196
197# Add indentation
198Unlike `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.
199For advanced users, you can even define your own css for the group labeling.
200```{r}
201kable(dt, booktabs = T) %>%
202 add_indent(c(1, 3, 5))
203```
Hao Zhu4278c632017-05-24 01:02:50 -0400204
205# Table on a Landscape Page
206Sometimes when we have a wide table, we want it to sit on a designated landscape page. The new function `landscape()` can help you on that. Unlike other functions, this little function only serves LaTeX and doesn't have a HTML side.
207```{r}
208kable(dt, caption = "Demo Table (Landscape)[note]", booktabs = T) %>%
209 kable_styling(latex_options = c("hold_position")) %>%
210 add_header_above(c(" ", "Group 1[note]" = 3, "Group 2[note]" = 3)) %>%
211 add_footnote(c("This table is from mtcars",
212 "Group 1 contains mpg, cyl and disp",
213 "Group 2 contains hp, drat and wt"),
214 notation = "symbol") %>%
215 group_rows("Group 1", 4, 5) %>%
216 landscape()
217```
218
219***
220
221The following feature is introduced in `kableExtra` 0.2.1.
222
223# Column Style Specification
224When 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.
225```{r}
226text_tbl <- data.frame(
227 Items = c("Item 1", "Item 2", "Item 3"),
228 Features = c(
229 "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin vehicula tempor ex. Morbi malesuada sagittis turpis, at venenatis nisl luctus a. ",
230 "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. ",
231 "Vivamus venenatis egestas eros ut tempus. Vivamus id est nisi. Aliquam molestie erat et sollicitudin venenatis. In ac lacus at velit scelerisque mattis. "
232 )
233)
234
Hao Zhu6ff9d502017-06-13 17:13:03 -0400235kable(text_tbl, booktabs = T) %>%
Hao Zhu4278c632017-05-24 01:02:50 -0400236 kable_styling(full_width = F) %>%
237 column_spec(1, bold = T) %>%
238 column_spec(2, width = "30em")
239```
Hao Zhu73604282017-06-11 22:08:48 -0400240
241***
242
Hao Zhu6ff9d502017-06-13 17:13:03 -0400243The following features are introduced in `kableExtra` 0.3.0
Hao Zhu73604282017-06-11 22:08:48 -0400244
Hao Zhu6ff9d502017-06-13 17:13:03 -0400245# Row Style Specification
246Similar 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.
247
Hao Zhu73604282017-06-11 22:08:48 -0400248```{r}
Hao Zhu6ff9d502017-06-13 17:13:03 -0400249kable(dt, booktabs = T) %>%
250 kable_styling("striped", full_width = F) %>%
251 column_spec(7, bold = T) %>%
252 row_spec(5, bold = T)
Hao Zhu73604282017-06-11 22:08:48 -0400253```
Hao Zhu2ce42b92017-06-15 17:15:33 -0400254
Hao Zhu5a7689e2017-06-26 15:37:24 -1000255# Collapse Rows in Selected Columns
256Function `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.
257
258```{r}
259collapse_rows_dt <- data.frame(C1 = c(rep("a", 10), rep("b", 5)),
260 C2 = c(rep("c", 7), rep("d", 3), rep("c", 2), rep("d", 3)),
261 C3 = 1:15,
262 C4 = sample(c(0,1), 15, replace = TRUE))
263head(collapse_rows_dt)
264kable(collapse_rows_dt, "latex", booktabs = T, align = "c") %>%
265 column_spec(1, bold=T) %>%
266 collapse_rows(columns = 1:2)
267```
268
Hao Zhu654c91f2017-07-03 14:03:34 -0400269```{r}
270kable(collapse_rows_dt, "latex", align = "c") %>%
271 column_spec(1, bold=T) %>%
272 collapse_rows()
273```
274