blob: c79c0afed6bb814ce7475a6ba2b87f548fff599e [file] [log] [blame]
Hao Zhu8902df82019-01-07 16:27:32 -05001---
2title: "Save Tables and Use them as Images"
3author: "Hao"
4date: "1/7/2019"
5output: html_document
6---
7
8Before `kableExtra` 1.0, we have a function called `kable_as_image`, which can transform a LaTeX tables to an image and include it in an rmarkdown document. Starting from `kableExtra` 1.0, we will split this function into two pieces: `save_kable` and `as_image`. `save_kable` will save any LaTeX and **HTML** tables to any format (`html`, `png`, `jpg`, `pdf` etc.). The output format will be defined by the file extension of the output file name. Here are a few examples.
9
10```{r, eval=FALSE}
11# not evaluating
12library(kableExtra)
13
14kable(mtcars[1:5, ], "html") %>%
15 kable_styling("striped") %>%
16 row_spec(1, color = "red") %>%
17 save_kable("inst/test.pdf")
18
19kable(mtcars, "latex") %>%
20 kable_styling(latex_options = "striped") %>%
21 save_kable("inst/test.png")
22```
23
Hao Zhu23ddaf32019-01-08 13:42:26 -050024# Turn your tables into images for cross-formating support
25`kableExtra` only supports `HTML` and `LaTeX`. One way to get it work with `Word` is to render the table `as_image`. This example below shows you how to render a LaTeX table in HTML document. Same rules applies when you use them in `rmarkdown::word_document`.
26
Hao Zhu8902df82019-01-07 16:27:32 -050027```{r}
28library(kableExtra)
29
30kable(mtcars, "latex", booktabs = T) %>%
31 kable_styling(latex_options = c("striped", "scale_down")) %>%
32 row_spec(1, color = "red") %>%
33 as_image()
34```
35
36You can also specify either `width` or `height` of the image. The image will be scaled properly.
37
38```{r}
39kable(mtcars, "latex", booktabs = T) %>%
40 kable_styling(latex_options = c("striped", "scale_down")) %>%
41 row_spec(1, color = "red") %>%
42 as_image(width = 8)
43```
44
45`as_image` also works for HTML tables. Of course, it is only meaning to do so if you want a HTML bootstrap style table in PDF/Word.
46```{r}
47kable(mtcars, "html") %>%
48 kable_styling("striped") %>%
49 row_spec(1, color = "red") %>%
50 as_image(width = 2)
51```
52
53One problem with this method, especially if you are using it in `Word`, is that to the end, the product you made is a picture. Please make sure your reader be aware that they cannot select/edit the table.