blob: 46a78dfbb751a44e1fa7c807adf774b54fdce328 [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
11***
12
13> _**Some functionalities of this package, such as striped line, require the `extra_dependencies` feature from rmarkdown 1.4.0, which has not yet been released on CRAN in February, 2017. If necessary, please install the dev version of rmarkdown from github before you try this package**_
14
15***
16
17# Overview
18The 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`.
19
20# Installation
21Some LaTeX features in `kableExtra`, such as striped line, requires rmarkdown 1.4.0+, which is not yet on CRAN. It is highly recommended to install the dev version of rmarkdown before you try this package. If you only use this package for HTML table, it doesn't matter what version of rmarkdown you are using.
22```r
23# install.packages("devtools")
24devtools::install_github("rstudio/rmarkdown")
25
26# For dev version
27devtools::install_github("haozhu233/kableExtra")
28```
29# Getting Started
30Here we are using the first few columns and rows from dataset `mtcars`
31```{r}
32library(knitr)
33library(kableExtra)
34dt <- mtcars[1:5, 1:6]
35```
36
37When 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.*
38
39```{r}
40options(knitr.table.format = "latex")
41## If you don't define format here, you'll need put `format = "latex"`
42## in every kable function.
43```
44
45## Plain LaTeX
46Plain LaTeX table looks relatively ugly in 2017.
47```{r}
48kable(dt)
49```
50
51## LaTeX Table with Booktabs
52Similar 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()`
53```{r}
54kable(dt, booktabs = T)
55```
56
57# Table Styles
58`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.
59
60## LaTeX Options
61Similar with `bootstap_options`, `latex_options` is also a charter vector with a bunch of options including `striped`, `hold_position` and `scale_down`.
62
63### Striped
64Even 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.
65```{r}
66kable(dt, booktabs = T) %>%
67 kable_styling(latex_options = "striped")
68```
69
70### Hold Position
71If 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.
72```{r}
73kable(dt, caption = "Demo table", booktabs = T) %>%
74 kable_styling(latex_options = c("striped", "hold_position"))
75```
76
77### Scale down
78When you have a super-wide table and you want to scale down the table to fit the page, you can use the `scale_down` option here. Note that, it will also scale up your table if your table is too small. It was named as `scale_down` because scale up is usually not very useful. In fact, when you want to "scale up" a table, you should use `full_width = T` instead in most cases.
79```{r}
80kable(cbind(dt, dt, dt), booktabs = T) %>%
81 kable_styling(latex_options = c("striped", "scale_down"))
82```
83```{r}
84kable(cbind(dt), booktabs = T) %>%
85 kable_styling(latex_options = c("striped", "scale_down"))
86```
87
88
89## Full Width or Not?
90By 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 `FALSE` for LaTeX tables (note that for HTML, the default is `TRUE` since 100% width is the real "default" for bootstrap tables). Also, if you use `full_width` in LaTeX, you will loss your in-cell text alignment settings and everything will be left-aligned.
91```{r}
92kable(dt, booktabs = T) %>%
93 kable_styling(full_width = T)
94```
95
96## Position
97Table 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`.
98
99Note 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.
100```{r}
101kable(dt, booktabs = T) %>%
102 kable_styling(position = "center")
103```
104
105Becides 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.
106```{r}
107kable(dt, booktabs = T) %>%
108 kable_styling(position = "float_right")
109```
110Lorem 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.
111
112## Font Size
113If 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.
114```{r}
115kable(dt, booktabs = T) %>%
116 kable_styling(font_size = 7)
117```
118
119# Add Extra Header Rows
120Tables 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)).
121```{r}
122kable(dt, booktabs = T) %>%
123 kable_styling() %>%
124 add_header_above(c(" " = 1, "Group 1" = 2, "Group 2" = 2, "Group 3" = 2))
125```
126
127In fact, if you want to add another row of header on top, please feel free to do so.
128```{r}
129kable(dt, booktabs = T) %>%
130 kable_styling() %>%
131 add_header_above(c(" ", "Group 1" = 2, "Group 2" = 2, "Group 3" = 2)) %>%
132 add_header_above(c(" ", "Group 4" = 4, "Group 5" = 2)) %>%
133 add_header_above(c(" ", "Group 6" = 6))
134```
135
136# Add footnote
137## Notation System
138You 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.
139
140### Alphabet
141```{r}
142kable(dt, booktabs = T) %>%
143 kable_styling() %>%
144 add_footnote(c("Footnote 1", "Have a good day."), notation = "alphabet")
145```
146
147### Number
148```{r}
149kable(dt, booktabs = T) %>%
150 kable_styling() %>%
151 add_footnote(c("Footnote 1", "Have a good day."), notation = "number")
152```
153
154### Symbol
155```{r}
156kable(dt, booktabs = T) %>%
157 kable_styling() %>%
158 add_footnote(c("Footnote 1", "Footnote 2", "Footnote 3"), notation = "symbol")
159```
160
161## In-table markers
162By design, `add_footnote()` will transform any `[note]` to in-table footnote markers.
163```{r}
164kable(dt, caption = "Demo Table[note]", booktabs = T) %>%
165 kable_styling(latex_options = "hold_position") %>%
166 add_header_above(c(" ", "Group 1[note]" = 3, "Group 2[note]" = 3)) %>%
167 add_footnote(c("This table is from mtcars",
168 "Group 1 contains mpg, cyl and disp",
169 "Group 2 contains hp, drat and wt"),
170 notation = "symbol")
171```