blob: 8005382f99e284017dfb4c86048c27f307dce421 [file] [log] [blame]
Hao Zhu5e4dd502018-04-05 12:01:58 -04001---
2title: "用kableExtra做牛*的表格"
3author: "朱昊"
4date: "`r Sys.Date()`"
5output:
6 html_document:
7 theme: simplex
8 toc: true
9 toc_depth: 2
10 toc_float: true
11---
12
Hao Zhub1caa272018-04-14 14:19:46 -040013<img src="kableExtra.svg" align="right" alt="logo" width="80" height = "93" style = "border: none; float: right;">
14
Hao Zhu6f2a0172018-04-13 17:03:40 -040015说起来这包写了都一年了我还没写过中文文档,现在给大家补上。
Hao Zhu5e4dd502018-04-05 12:01:58 -040016
Hao Zhub1caa272018-04-14 14:19:46 -040017另外这中文版我就不发CRAN了,要看的麻烦移步这包的文档网站[http://haozhu233.github.io/kableExtra/](http://haozhu233.github.io/kableExtra/)。
Hao Zhu5e4dd502018-04-05 12:01:58 -040018
Hao Zhu6f2a0172018-04-13 17:03:40 -040019(因为我基本是在~~自由发挥~~重写一遍。。你们不要太去在意中文英文的不同哈。。。)
20
Hao Zhu5e4dd502018-04-05 12:01:58 -040021
22# 简介
Hao Zhu6f2a0172018-04-13 17:03:40 -040023`kableExtra`的目标是帮你搭建以及美化一些常用而又较为复杂的表格。这些表格有个特点,那就是用word 或者excel来做会极其简单,而要用一个编程语言去描述,尤其是对于一些LaTeX初心者(比如当年的我。。),往往会让人绝望。而现在,在这个包的帮助下,我希望你能用一种更为直觉的方式来创建你的表格,把更多的时间花在内容上。而那些排版之类的事情,就留给这个包吧。:)
Hao Zhu5e4dd502018-04-05 12:01:58 -040024
Hao Zhu222cd7e2018-04-10 14:27:19 -040025# 安装
26CRAN安装`install.packages("kableExtra")`不用我说,想尝鲜可以使用开发版。
Hao Zhu5e4dd502018-04-05 12:01:58 -040027```r
Hao Zhu5e4dd502018-04-05 12:01:58 -040028# install.packages("devtools")
29devtools::install_github("haozhu233/kableExtra")
30```
Hao Zhu222cd7e2018-04-10 14:27:19 -040031
32# 第一步
Hao Zhu9ac3e382018-04-12 18:56:32 -040033## 用`kable`生成HTML表格
34首先要强调一下,`kable`这个function来自于R圈大佬谢益辉的`knitr`包。大致上说,`kable`可以生成三种格式的表格:`HTML`, `LaTeX` `markdown`(默认)。`markdown`作为默认的格式完美契合`rmarkdown`本身,可却因为`markdown`表格本身功能上的限制,在很多情况下达不到我们的要求。因此,当你需要个性化你的表格时,你往往需要先让`kable`先帮你生成一个`HTML`的表格。在这份文档中,我们主要使用`mtcars`这个数据的前几列和几行数据来演示。
Hao Zhu222cd7e2018-04-10 14:27:19 -040035
Hao Zhu5e4dd502018-04-05 12:01:58 -040036```{r}
Hao Zhu5e4dd502018-04-05 12:01:58 -040037library(kableExtra)
38dt <- mtcars[1:5, 1:6]
Hao Zhu5e4dd502018-04-05 12:01:58 -040039
Hao Zhu5e4dd502018-04-05 12:01:58 -040040kable(dt, "html")
41```
42
Hao Zhu9ac3e382018-04-12 18:56:32 -040043注意,如果你有好几个表格要去生成,与其在每一个kable里定义格式,不如在所有的事情开始之前定义一个全局的设置。这样的话,上面的语句就只需要打`kable(dt)`就可以了。
44
45```{r}
46options(knitr.table.format = "html")
47```
48
Hao Zhu6f2a0172018-04-13 17:03:40 -040049当然,在今后的版本中(目前开发版),甚至这一步都可以被省略。今后,`kableExtra`将会自动根据你需要的情况帮你设好这个全局格式。这一步发生在你加载这个包的时候(`library(kableExtra)`),所以如果你不想要这个功能的话,可以在你加载`kableExtra`之前通过设置`options(kableExtra.auto_format = F)`来解决。
50
Hao Zhu9ac3e382018-04-12 18:56:32 -040051## bootstrap了解一下
Hao Zhub1caa272018-04-14 14:19:46 -040052如果你从没听过bootstrap的话,你应该去了解一下。简单来说,bootstrap是个开源的CSS库,可以用来很方便地美化HTML页面。也因此,bootstrapRStudio的产品中被大量使用。你用rmarkdownshiny生成出来的HTML文档和app都有加载。而这个包的HTML部分也提供了一些接口方便你快速实现一些bootstrap风的表格。
Hao Zhu9ac3e382018-04-12 18:56:32 -040053
Hao Zhu5e4dd502018-04-05 12:01:58 -040054```{r}
55dt %>%
56 kable("html") %>%
57 kable_styling()
58```
59
Hao Zhu9ac3e382018-04-12 18:56:32 -040060# 表格整体风格
61`kable_styling`提供了几种其他的方式来定制表格的整体风格。
Hao Zhu5e4dd502018-04-05 12:01:58 -040062
Hao Zhu6f2a0172018-04-13 17:03:40 -040063## Bootstrap的表格格式
64如果你熟悉bootstrap,那么以下这些CSS类对你一定不陌生:`striped`, `bordered`, `hover`, `condensed` 以及 `responsive`. 不熟悉也没关系,你可以看看 [这里](http://getbootstrap.com/css/#tables)来了解。你可以通过`kable_styling`快速地把这些样式应用到你的表格里。比如,下面这个例子就是给表格加上斑马纹和悬浮效果。
Hao Zhu5e4dd502018-04-05 12:01:58 -040065
Hao Zhu5e4dd502018-04-05 12:01:58 -040066```{r}
67kable(dt, "html") %>%
68 kable_styling(bootstrap_options = c("striped", "hover"))
69```
70
Hao Zhu9ac3e382018-04-12 18:56:32 -040071有些人觉得默认的bootstrap表格每行都太高了,这时候用上`condensed`会让内容显得更紧凑。
Hao Zhu5e4dd502018-04-05 12:01:58 -040072```{r}
73kable(dt, "html") %>%
74 kable_styling(bootstrap_options = c("striped", "hover", "condensed"))
75```
76
Hao Zhu9ac3e382018-04-12 18:56:32 -040077`responsive`这选项可以让表格样式随屏幕宽度变化,更适合手机屏。
Hao Zhu5e4dd502018-04-05 12:01:58 -040078```{r}
79kable(dt, "html") %>%
80 kable_styling(bootstrap_options = c("striped", "hover", "condensed", "responsive"))
81```
82
Hao Zhu9ac3e382018-04-12 18:56:32 -040083## “为啥我的表格这么宽啊?”
Hao Zhu6f2a0172018-04-13 17:03:40 -040084“为啥我的表格这么宽”是一个`rmarkdown`新人常见问题。这其中的原因是,`bootstrap`把表格的宽度统一订成了100%的[容器](http://w3schools.wang/w3css/w3css_containers.html)宽。设计`bootstrap`的人原来想让你用他们的grid system来控制表格的宽度,可是当你在写`rmarkdown`的时候,难不成还想即兴来定义一串`<div>`?解决办法如下。
Hao Zhu5e4dd502018-04-05 12:01:58 -040085```{r}
86kable(dt, "html") %>%
87 kable_styling(bootstrap_options = "striped", full_width = F)
88```
89
Hao Zhu9ac3e382018-04-12 18:56:32 -040090## 表格位置
91表格在页面中位置也是排版很重要的一块。注意,这只有在表格不是全屏宽的时候才有用(这是当然的啦。
Hao Zhu5e4dd502018-04-05 12:01:58 -040092```{r}
93kable(dt, "html") %>%
94 kable_styling(bootstrap_options = "striped", full_width = F, position = "left")
95```
96
Hao Zhu9ac3e382018-04-12 18:56:32 -040097除了常见的左中右,你还可以选择`float_left``float_right`
Hao Zhu5e4dd502018-04-05 12:01:58 -040098```{r}
99kable(dt, "html") %>%
100 kable_styling(bootstrap_options = "striped", full_width = F, position = "float_right")
101```
Hao Zhu6f2a0172018-04-13 17:03:40 -0400102滚滚长江东逝水,浪花淘尽英雄。是非成败转头空。青山依旧在,几度夕阳红。白发渔樵江渚上,惯看秋月春风。 一壶浊酒喜相逢。 古今多少事,都付笑谈中。滚滚长江东逝水,浪花淘尽英雄。是非成败转头空。青山依旧在,几度夕阳红。白发渔樵江渚上,惯看秋月春风。 一壶浊酒喜相逢。古今多少事,都付笑谈中。滚滚长江东逝水,浪花淘尽英雄。是非成败转头空。青山依旧在,几度夕阳红。白发渔樵江渚上,惯看秋月春风。 一壶浊酒喜相逢。古今多少事,都付笑谈中。滚滚长江东逝水,浪花淘尽英雄。是非成败转头空。青山依旧在,几度夕阳红。白发渔樵江渚上,惯看秋月春风。一壶浊酒喜相逢。古今多少事,都付笑谈中。滚滚长江东逝水,浪花淘尽英雄。是非成败转头空。青山依旧在,几度夕阳红。白发渔樵江渚上,惯看秋月春风。一壶浊酒喜相逢。古今多少事,都付笑谈中。滚滚长江东逝水,浪花淘尽英雄。是非成败转头空。青山依旧在,几度夕阳红。白发渔樵江渚上,惯看秋月春风。 一壶浊酒喜相逢。古今多少事,都付笑谈中。滚滚长江东逝水,浪花淘尽英雄。是非成败转头空。青山依旧在,几度夕阳红。白发渔樵江渚上,惯看秋月春风。 一壶浊酒喜相逢。 古今多少事,都付笑谈中。
Hao Zhu9ac3e382018-04-12 18:56:32 -0400103
104
105## 字体大小
106如题,当你的表格过大时,你可以调调字体大小。
Hao Zhu5e4dd502018-04-05 12:01:58 -0400107```{r}
108kable(dt, "html") %>%
109 kable_styling(bootstrap_options = "striped", font_size = 7)
110```
111
Hao Zhu9ac3e382018-04-12 18:56:32 -0400112# 列与行的格式
113## 列
Hao Zhu6f2a0172018-04-13 17:03:40 -0400114`column_spec`如其名,可以帮你定义某一列或者几列的样式,比如宽度,字体颜色,加粗,斜体等。列的宽度其实尤为重要,这样如果你的表格里有一串巨长的文字,它的格式不会一下被打乱。
Hao Zhu5e4dd502018-04-05 12:01:58 -0400115
116```{r}
117text_tbl <- data.frame(
118 Items = c("Item 1", "Item 2", "Item 3"),
119 Features = c(
120 "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin vehicula tempor ex. Morbi malesuada sagittis turpis, at venenatis nisl luctus a. ",
121 "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. ",
122 "Vivamus venenatis egestas eros ut tempus. Vivamus id est nisi. Aliquam molestie erat et sollicitudin venenatis. In ac lacus at velit scelerisque mattis. "
123 )
124)
125
126kable(text_tbl, "html") %>%
127 kable_styling(full_width = F) %>%
128 column_spec(1, bold = T, border_right = T) %>%
129 column_spec(2, width = "30em", background = "yellow")
130```
131
132
Hao Zhu9ac3e382018-04-12 18:56:32 -0400133## 行
Hao Zhu6f2a0172018-04-13 17:03:40 -0400134`row_spec``column_spec`差不多,除了没有列宽。注意,当你数第几行的时候,你不需要考虑表头和你通过`group_rows`添加的那些行,就数那些原生的“内容”行就行。
Hao Zhu5e4dd502018-04-05 12:01:58 -0400135
136```{r}
137kable(dt, "html") %>%
138 kable_styling("striped", full_width = F) %>%
139 column_spec(5:7, bold = T) %>%
140 row_spec(3:5, bold = T, color = "white", background = "#D7261E")
141```
142
Hao Zhu9ac3e382018-04-12 18:56:32 -0400143### 表头的那行
144只需要说`row_spec(0, ...)`就可以了。
Hao Zhu5e4dd502018-04-05 12:01:58 -0400145```{r}
146kable(dt, format = "html") %>%
147 kable_styling("striped", full_width = F) %>%
148 row_spec(0, angle = -45)
149```
150
Hao Zhu9ac3e382018-04-12 18:56:32 -0400151# 格子的格式
Hao Zhu6f2a0172018-04-13 17:03:40 -0400152`cell_spec` 和之前说的两个`spec`不一样,你应该在把你的数据放进`kable`之前使用它,就像接下来的例子。你可以很容易地在`dplyr`pipeline里加上一截`cell_spec`。注意,因为你用`cell_spec`生成的是直接的`HTML``LaTeX`,你需要在`kable`里加上`escape = FALSE`。同时,你需要告诉`cell_spec`你到底需要`HTML`还是`LaTeX`。而在今后版本的`kableExtra`里,因为全局的表格格式已经被自动设好了,你就不需要做这一步了。
Hao Zhu5e4dd502018-04-05 12:01:58 -0400153
Hao Zhu9ac3e382018-04-12 18:56:32 -0400154## `cell_spec`和`ifelse`
155`cell_spec``ifelse`结合会让表格里的数据的可视度一下子高很多。
Hao Zhu5e4dd502018-04-05 12:01:58 -0400156```{r, message=FALSE, warning=FALSE}
157library(dplyr)
158mtcars[1:10, 1:2] %>%
159 mutate(
160 car = row.names(.),
161 # You don't need format = "html" if you have ever defined options(knitr.table.format)
162 mpg = cell_spec(mpg, "html", color = ifelse(mpg > 20, "red", "blue")),
163 cyl = cell_spec(cyl, "html", color = "white", align = "c", angle = 45,
164 background = factor(cyl, c(4, 6, 8),
165 c("#666666", "#999999", "#BBBBBB")))
166 ) %>%
167 select(car, mpg, cyl) %>%
168 kable("html", escape = F) %>%
169 kable_styling("striped", full_width = F)
170```
171
Hao Zhu9ac3e382018-04-12 18:56:32 -0400172## 给你的表格加上Viridis Color
Hao Zhu6f2a0172018-04-13 17:03:40 -0400173这包还带了几个`cell_spec`的辅助型方程,包括 `spec_color`, `spec_font_size` `spec_angle`. 他们可以帮你把数据变成相应的颜色,字体大小和角度。其中最有意思的是那个颜色,这里用了[viridis color](https://CRAN.R-project.org/package=viridisLite)这个色板. 合理使用的话几乎可以用表格做出类似热图的可视化。
Hao Zhu5e4dd502018-04-05 12:01:58 -0400174
175```{r}
176iris[1:10, ] %>%
177 mutate_if(is.numeric, function(x) {
178 cell_spec(x, "html", bold = T,
179 color = spec_color(x, end = 0.9),
180 font_size = spec_font_size(x))
181 }) %>%
182 mutate(Species = cell_spec(
183 Species, "html", color = "white", bold = T,
184 background = spec_color(1:10, end = 0.9, option = "A", direction = -1)
185 )) %>%
186 kable("html", escape = F, align = "c") %>%
187 kable_styling("striped", full_width = F)
188```
189
Hao Zhu5e4dd502018-04-05 12:01:58 -0400190
Hao Zhu9ac3e382018-04-12 18:56:32 -0400191## 普通文本的格式
192其实你也可以用`cell_spec`或者`text_spec`去定义普通文字的样式。
Hao Zhu5e4dd502018-04-05 12:01:58 -0400193
194```{r}
Hao Zhu9ac3e382018-04-12 18:56:32 -0400195sometext <- strsplit("人群中突然钻出一个光头", "")[[1]]
Hao Zhu5e4dd502018-04-05 12:01:58 -0400196text_formatted <- paste(
197 text_spec(sometext, "html", color = spec_color(1:length(sometext), end = 0.9),
198 font_size = spec_font_size(1:length(sometext), begin = 5, end = 20)),
Hao Zhu9ac3e382018-04-12 18:56:32 -0400199 collapse = "")
Hao Zhu5e4dd502018-04-05 12:01:58 -0400200
Hao Zhu5e4dd502018-04-05 12:01:58 -0400201```
202`r text_formatted`
203
Hao Zhu9ac3e382018-04-12 18:56:32 -0400204## Tooltip 悬浮提示框
205你可以通过`cell_spec`相对简单地添加悬浮提示框. 举个例子,`text_spec("tooltip", color = "red", tooltip = "Hello World")` 会生成 `r text_spec("Hover over me", color = "red", tooltip = "Hello World")`。注意HTML原生的提示框非常慢,你可能会想用`bootstrap`javascript版的。如果你想这么做的话,你需要把接下来的这段代码放在你的rmarkdown文本的任何地方。需要注意的是,如果你和这个文档一样使用了这种目录在侧面的格式,你就没办法使用这个功能。原因在于这个和`jqueryui``tooltip`互相冲突。这种情况下,你可能会想试试我下面说的`popover`。这两个差不多。
Hao Zhu5e4dd502018-04-05 12:01:58 -0400206
Hao Zhu5e4dd502018-04-05 12:01:58 -0400207```
208<script>
209$(document).ready(function(){
Hao Zhuf0f19242018-05-11 17:50:46 -0400210$('[data-toggle="tooltip"]').tooltip();
Hao Zhu5e4dd502018-04-05 12:01:58 -0400211});
212</script>
213```
214
Hao Zhu9ac3e382018-04-12 18:56:32 -0400215## Popover Message 有头的悬浮弹出提示框
216和之前一样的设定,区别在于你可以给`popover`的小框加一个标题。不加的话,和上面的功能基本一样。
Hao Zhu5e4dd502018-04-05 12:01:58 -0400217
218```
219<script>
220$(document).ready(function(){
Hao Zhuf0f19242018-05-11 17:50:46 -0400221$('[data-toggle="popover"]').popover();
Hao Zhu5e4dd502018-04-05 12:01:58 -0400222});
223</script>
224```
225
226<script>
227$(document).ready(function(){
Hao Zhuf0f19242018-05-11 17:50:46 -0400228$('[data-toggle="popover"]').popover();
Hao Zhu5e4dd502018-04-05 12:01:58 -0400229});
230</script>
231
232```{r}
233popover_dt <- data.frame(
234 position = c("top", "bottom", "right", "left"),
235 stringsAsFactors = FALSE
236)
237popover_dt$`Hover over these items` <- cell_spec(
238 paste("Message on", popover_dt$position), # Cell texts
239 popover = spec_popover(
240 content = popover_dt$position,
241 title = NULL, # title will add a Title Panel on top
242 position = popover_dt$position
243 ))
244kable(popover_dt, "html", escape = FALSE) %>%
245 kable_styling("striped", full_width = FALSE)
246```
247
Hao Zhu9ac3e382018-04-12 18:56:32 -0400248## 链接
249你可以给文字添加一个链接`text_spec("Google", link = "https://google.com")`: `r text_spec("Google", link = "https://google.com")`。这里有一个利用加链接让`popover`悬浮框本来的文本更加明显的小技巧 `text_spec("Hover on me", link = "javascript:void(0)", popover = "Hello")`: `r text_spec("Hover on me", link = "javascript:void(0)", popover = "Hello")`
Hao Zhu5e4dd502018-04-05 12:01:58 -0400250
Hao Zhu9ac3e382018-04-12 18:56:32 -0400251## 同时使用`kableExtra`和`formattable`
Hao Zhu6f2a0172018-04-13 17:03:40 -0400252如果你也喜欢[`formattable`](https://github.com/renkun-ken/formattable)的话,你其实可以将`formattable`和`kableExtra`用在一起,灰常酷炫。
Hao Zhu5e4dd502018-04-05 12:01:58 -0400253```{r, message = FALSE, warning=FALSE}
254library(formattable)
255mtcars[1:5, 1:4] %>%
256 mutate(
257 car = row.names(.),
258 mpg = color_tile("white", "orange")(mpg),
259 cyl = cell_spec(cyl, "html", angle = (1:5)*60,
260 background = "red", color = "white", align = "center"),
261 disp = ifelse(disp > 200,
262 cell_spec(disp, "html", color = "red", bold = T),
263 cell_spec(disp, "html", color = "green", italic = T)),
264 hp = color_bar("lightgreen")(hp)
265 ) %>%
266 select(car, everything()) %>%
267 kable("html", escape = F) %>%
268 kable_styling("hover", full_width = F) %>%
269 column_spec(5, width = "3cm") %>%
270 add_header_above(c(" ", "Hello" = 2, "World" = 2))
271```
272
273
Hao Zhu9ac3e382018-04-12 18:56:32 -0400274# 行组和列组
275## 列组
Hao Zhu6f2a0172018-04-13 17:03:40 -0400276我们在Word里做表格时,要想表示两个列同属一个分类,我们会在这两列的上面再加一行,画条横线,写上名字。基本上`add_header_above`就是被设计来做这事的。在使用这个方程时,你需要给他一个**`named vector`**(划重点)。这个`named vector`的本身数值是所有列的 span值,而具体的文字则在names里(没看懂我在说啥的,请参考下面的例子)。
Hao Zhu5e4dd502018-04-05 12:01:58 -0400277```{r}
278kable(dt, "html") %>%
279 kable_styling("striped") %>%
280 add_header_above(c(" " = 1, "Group 1" = 2, "Group 2" = 2, "Group 3" = 2))
281```
282
Hao Zhu9ac3e382018-04-12 18:56:32 -0400283事实上,你甚至可以一层一层继续往上加下去。
Hao Zhu5e4dd502018-04-05 12:01:58 -0400284```{r}
285kable(dt, "html") %>%
286 kable_styling(c("striped", "bordered")) %>%
287 add_header_above(c(" ", "Group 1" = 2, "Group 2" = 2, "Group 3" = 2)) %>%
288 add_header_above(c(" ", "Group 4" = 4, "Group 5" = 2)) %>%
289 add_header_above(c(" ", "Group 6" = 6))
290```
291
Hao Zhu6f2a0172018-04-13 17:03:40 -0400292## 行组
293我们一般做表格时,想表示几行同属一类一般有两种方式,其一是新插入一行大类的名称,然后再给那几行小的加上缩进。其二是在左边再加上一列,通过合并相印的行来表示所属的意思。相对应的,在`kableExtra`里,第一种方法可以用`group_rows`实现,而第二种则可以用`collapse_row`
294
295### `group_rows`
296我们先说`group_rows`,请看下面这个例子。
297
Hao Zhu5e4dd502018-04-05 12:01:58 -0400298```{r}
299kable(mtcars[1:10, 1:6], "html", caption = "Group Rows") %>%
300 kable_styling("striped", full_width = F) %>%
301 group_rows("Group 1", 4, 7) %>%
302 group_rows("Group 2", 8, 10)
303```
304
Hao Zhu6f2a0172018-04-13 17:03:40 -0400305另一种使用`group_rows`的方法是提供一个目录,用法和`add_header_above`相同。
Hao Zhu5e4dd502018-04-05 12:01:58 -0400306```{r, eval = F}
307# Not evaluated. This example generates the same table as above.
308kable(mtcars[1:10, 1:6], "html", caption = "Group Rows") %>%
309 kable_styling("striped", full_width = F) %>%
310 group_rows(index = c(" " = 3, "Group 1" = 4, "Group 2" = 3))
311```
312
Hao Zhu6f2a0172018-04-13 17:03:40 -0400313如果你熟悉CSS,你可以自己定义标签行的样式。
314
Hao Zhu5e4dd502018-04-05 12:01:58 -0400315```{r}
316kable(dt, "html") %>%
317 kable_styling("striped", full_width = F) %>%
Hao Zhuf0f19242018-05-11 17:50:46 -0400318 group_rows("Group 1", 3, 5, label_row_css = "background: repeating-linear-gradient(45deg, #d9230f, #d9230f 10px, #f96352 10px, #f96352 20px); color: #fff;")
Hao Zhu5e4dd502018-04-05 12:01:58 -0400319```
320
Hao Zhu6f2a0172018-04-13 17:03:40 -0400321### 行的缩进
322有时候只添加缩进就可以变的很有用,这时候你需要`add_indent`
Hao Zhu5e4dd502018-04-05 12:01:58 -0400323```{r}
324kable(dt, "html") %>%
325 kable_styling("striped", full_width = F) %>%
326 add_indent(c(1, 3, 5))
327```
328
Hao Zhu6f2a0172018-04-13 17:03:40 -0400329### 合并行
330`collapse_rows` 做的就是我们之前说的第二种在表格内表示所属关系的方法。请看下面的例子,第一二两列所有重复的内容都被自动合并了。
Hao Zhu5e4dd502018-04-05 12:01:58 -0400331
332```{r}
333collapse_rows_dt <- data.frame(C1 = c(rep("a", 10), rep("b", 5)),
Hao Zhuf0f19242018-05-11 17:50:46 -0400334 C2 = c(rep("c", 7), rep("d", 3), rep("c", 2), rep("d", 3)),
335 C3 = 1:15,
336 C4 = sample(c(0,1), 15, replace = TRUE))
Hao Zhu5e4dd502018-04-05 12:01:58 -0400337kable(collapse_rows_dt, "html", align = "c") %>%
338 kable_styling(full_width = F) %>%
339 column_spec(1, bold = T) %>%
340 collapse_rows(columns = 1:2)
341```
342
Hao Zhu6f2a0172018-04-13 17:03:40 -0400343# 表格注脚
Hao Zhu5e4dd502018-04-05 12:01:58 -0400344
Hao Zhu6f2a0172018-04-13 17:03:40 -0400345给表格添加注脚也是一个很常见的操作。在`kableExtra`里对应的是`footnote`方程。在这里,你可以使用四套编号体系:无编号`general`,数字`number`,字母`alphabet`和特殊符号`symbol`。注意,特殊符号我只定义了20个,因为一般你给表格加的注脚也不会有那么多。正如下面这个例子,你可以选择只用其中一种或者同时使用几种。
Hao Zhu5e4dd502018-04-05 12:01:58 -0400346
Hao Zhu5e4dd502018-04-05 12:01:58 -0400347```{r}
348kable(dt, "html", align = "c") %>%
349 kable_styling(full_width = F) %>%
350 footnote(general = "Here is a general comments of the table. ",
351 number = c("Footnote 1; ", "Footnote 2; "),
352 alphabet = c("Footnote A; ", "Footnote B; "),
353 symbol = c("Footnote Symbol 1; ", "Footnote Symbol 2")
Hao Zhuf0f19242018-05-11 17:50:46 -0400354 )
Hao Zhu5e4dd502018-04-05 12:01:58 -0400355```
356
Hao Zhu6f2a0172018-04-13 17:03:40 -0400357要是想要修改每一类的标题的话,你可以使用那些`***_title`变量. 你还可以通过 `footnote_order`来更改他们的顺序. 你甚至可以通过`footnote_as_chunk`,让备注们以一个段落的方式显示.
Hao Zhu5e4dd502018-04-05 12:01:58 -0400358
359```{r}
360kable(dt, "html", align = "c") %>%
361 kable_styling(full_width = F) %>%
362 footnote(general = "Here is a general comments of the table. ",
363 number = c("Footnote 1; ", "Footnote 2; "),
364 alphabet = c("Footnote A; ", "Footnote B; "),
365 symbol = c("Footnote Symbol 1; ", "Footnote Symbol 2"),
Hao Zhu6f2a0172018-04-13 17:03:40 -0400366 general_title = "备注: ", number_title = "备注233: ",
367 alphabet_title = "备注666: ", symbol_title = "备注888: ",
Hao Zhu5e4dd502018-04-05 12:01:58 -0400368 footnote_as_chunk = T
Hao Zhuf0f19242018-05-11 17:50:46 -0400369 )
Hao Zhu5e4dd502018-04-05 12:01:58 -0400370```
371
Hao Zhu6f2a0172018-04-13 17:03:40 -0400372若是想在表格内部添加注释的小字的话,你需要使用那些`footnote_mark_***()`方程. `cell_spec`一样,你需要告诉他们你想要的格式(在今后的版本里你不需要了)同时在使用`kable`的时候往里加上`escape=F`
Hao Zhu5e4dd502018-04-05 12:01:58 -0400373
374```{r}
375dt_footnote <- dt
376names(dt_footnote)[2] <- paste0(names(dt_footnote)[2],
377 footnote_marker_symbol(1))
378row.names(dt_footnote)[4] <- paste0(row.names(dt_footnote)[4],
Hao Zhuf0f19242018-05-11 17:50:46 -0400379 footnote_marker_alphabet(1))
Hao Zhu5e4dd502018-04-05 12:01:58 -0400380kable(dt_footnote, "html", align = "c",
381 # Remember this escape = F
382 escape = F) %>%
383 kable_styling(full_width = F) %>%
384 footnote(alphabet = "Footnote A; ",
385 symbol = "Footnote Symbol 1; ",
386 alphabet_title = "Type II: ", symbol_title = "Type III: ",
387 footnote_as_chunk = T)
388```
389
Hao Zhu6f2a0172018-04-13 17:03:40 -0400390# HTML独占功能
391## 框住你的表格
392若你的表格过大而你又不想随便缩字体大小,你可以用`scroll_box`把它放进一个盒子,这样用户可以自己选择想看的位置。下面的例子里我同时定义了盒子的高度和宽度,但你其实可以根据你的需求,只定义其中一个。需要注意的是,如果你同时需要打印这个表格,那你最好不要使用这个`scroll_box`。因为在打印的时候,被打印的将不会是整个表格,而会是到时候你屏幕上显示的部分。
Hao Zhu5e4dd502018-04-05 12:01:58 -0400393
394```{r}
395kable(cbind(mtcars, mtcars), "html") %>%
396 kable_styling() %>%
397 scroll_box(width = "500px", height = "200px")
398```
Hao Zhuf0f19242018-05-11 17:50:46 -0400399
400另外,除了一个具体的宽度或者高度,你也可以选择百分比哦。比如`width="100%"`就很实用。另外不喜欢默认的灰色直角框,你也可以通过定义`box_css`把消掉或者替换掉。
401```{r}
402kable(cbind(mtcars, mtcars)[1:5, ], "html") %>%
403 kable_styling() %>%
404 scroll_box(width = "100%", box_css = '
405padding: 15px; border: 15px solid transparent;
406background: linear-gradient(white,white), repeating-linear-gradient(45deg, #d9230f, #d9230f 10px, #f96352 10px, #f96352 20px);
407background-clip: padding-box, border-box;')
408```