在rmarkdown pdf输出中包装比例表的列名的有效方法

Joh*_* J. 4 r pandoc r-markdown kableextra kable

我正在使用Questionr包制作加权的行比例表。我想在列名太长时包装它们。因为我要制作数百个表,所以该解决方案需要在具有不同列数的表上工作。我也想避免将所有列设置为特定宽度。理想情况下,短列名称应保持其正常宽度,而超过指定最大长度的名称将被换行。

到目前为止,我尝试了很多解决方案,它们写为.Rmd文件:

---
title: "Example"
output: pdf_document
---

```{r setup, include=FALSE}
library(questionr)
library(knitr)
data("happy")
```


A simple weighted table with the "kable" method:
```{r table1, echo=TRUE}
kable(wtd.table(happy$degree, happy$happy, weights = happy$wtssall),
  digits = 0)
```

The same "kable" table, but with row proportions:
```{r table2, echo=TRUE}
kable(rprop(wtd.table(happy$degree, happy$happy, weights = happy$wtssall)),
  digits = 0)
```

I want to wrap the column headers, but kableExtra::column_spec() gives an error.
Even if it worked it requires manually setting each column width.:
```{r table3, echo=TRUE}
library(kableExtra)
kable(rprop(wtd.table(happy$degree, happy$happy, weights = happy$wtssall)),
  digits = 0) %>%
  column_spec(column = 2, width = ".25in")
```

Maybe str_wrap will do the trick?
```{r table4, echo=TRUE}
library(stringr)
kable(rprop(wtd.table(happy$degree, str_wrap(happy$happy, width = 8),
                  weights = happy$wtssall)),
  digits = 0)
```

Giving up on knitr::kable(), maybe pander has a solution.
Here is the simple weighted frequency table.
```{r table5, echo=TRUE, results='asis'}
library(pander)
pandoc.table(wtd.table(happy$degree, str_wrap(happy$happy, width = 8),
                  weights = happy$wtssall),
         split.cells=8)
```

So far, so good. But it doesn't work for the table of row proportions,
because the rprop table is of class ([1]"proptab" [2]"table")
while the wtd.table() is just class "table"
```{r table6, echo=TRUE, results='asis', error=TRUE}
pandoc.table(rprop(wtd.table(happy$degree, str_wrap(happy$happy, width = 8),
                  weights = happy$wtssall)),
         split.cells=8)
```

But wait! I can pass a kable() product as pandoc output.
This table looks great, but I don't think I pass any
pandoc.table() arguments like "split.cells=8" to it.
```{r table7, echo=TRUE, results='asis', error=TRUE}
kable(rprop(wtd.table(happy$degree, happy$happy, weights = happy$wtssall)),
  digits = 0, format = "pandoc")
```
Run Code Online (Sandbox Code Playgroud)

.Rmd文件的输出如下所示:在此处输入图片说明

在此处输入图片说明

Hao*_*Hao 5

至少,对于kableExtra,您需要在kable函数中将格式指定为latexhtml在此处输入图片说明

为了使其动态,可以将表保存到变量中,然后再放入表中,并在函数中使用2:(ncol(your_table)+ 1)column_spec(column_name 列为+1)。