gpt4 book ai didi

r - 在 kable 标题中插入新行

转载 作者:行者123 更新时间:2023-12-04 16:03:56 25 4
gpt4 key购买 nike

问题描述:

我正在用 rMarkdown 编写文档,我需要在生成 PDF 之前格式化表格。问题是我在 kable 中插入新行时遇到问题使用 add_headers_above 添加的 header 命令。

目前,文本“Month (persons)”——这是用该命令添加的第一个标题——显示为一行。我想打破这一点,以便在“月”和“(人)”之间插入一个新行。

动机只是为了节省水平页面空间,以便我可以在一张 A4 纸上按大小放置两个表格。

我的修复尝试

我试过包括 \nadd_headers_above命令:
[...] %>%
add_header_above(c(" ", 'Month \n (persons)' = 1, "TTY \n (persons)" = 1, "TTY \n (% chg.)" = 1))
但这并没有奏效。

可重现的例子:

---
output: pdf_document
---

```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
library(knitr)
library(kableExtra)
library(tibble)
```
```{r}
df <- tribble(~Location, ~Jan_Qrt, ~Jan_year, ~growth,
"New South Wales", 16000, 403300, 3.30,
"Victoria", -21200, 134100, 3.50,
"Queensland", 2100, 100200, 3.20,
"South Australia", 19700, 117900, 5.00,
"Western Australia", 5300, 13200, 1.60,
"Tasmania", -8900, 24300, 1.90,
"Northern Territory", -400, 5700, 2.40,
"Australian Cap", 300, -4300, -3.10,
"Australia", 800, 10600, 4.80)

kable(df, format = 'latex', booktabs = T, align = 'r') %>%
kable_styling(full_width = F, font_size = 8) %>%
row_spec(row = 9, bold = TRUE) %>%
add_header_above(c(" ", 'Month (persons)' = 1, "TTY (persons)" = 1, "TTY (% chg.)" = 1))

```

最佳答案

现在,您必须自己编写一些原始的 Latex 代码。

正如 https://tex.stackexchange.com/questions/2441/how-to-add-a-forced-line-break-inside-a-table-cell 中的答案建议,您可以尝试使用 makecell包裹。为此,您可以使用 kableExtra::usepackage_latex() 加载 latex 包。然后通过设置escape = F破解它在 add_header_above .

usepackage_latex("makecell")
kable(df, format = 'latex', booktabs = T, align = 'r') %>%
kable_styling(full_width = F, font_size = 8) %>%
row_spec(row = 9, bold = TRUE) %>%
add_header_above(c(" ",
'\\\\thead{Month\\\\\\\\(persons)}' = 1,
"\\\\thead{TTY\\\\\\\\(persons)}" = 1,
"\\\\thead{TTY\\\\\\\\(\\\\% chg.)}" = 1),
escape = F)

更新

别介意上面的 latex 困惑,我让它在 kableExtra 的开发版中工作.现在你只要做
library(kableExtra)

mtcars[1:5, 1:5] %>%
kable("latex", booktabs = T) %>%
add_header_above(c(" ", "aa\na" = 2, "bbb" = 3))

关于r - 在 kable 标题中插入新行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49546778/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com