gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-02 04:25:37 24 4
gpt4 key购买 nike

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

这是我迄今为止尝试过的一系列解决方案,编写为 .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")
```

该 .Rmd 文件的输出如下所示:enter image description here

enter image description here

最佳答案

至少,对于 kableExtra,您需要在 kable 函数中指定格式为 latexhtml. enter image description here

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

关于r - 在 rmarkdown pdf 输出中包装比例表的列名称的有效方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48231543/

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