gpt4 book ai didi

r - 使用包 texreg 和 RStudio/rmarkdown/knitr 创建模型汇总表的问题

转载 作者:行者123 更新时间:2023-12-05 03:13:44 30 4
gpt4 key购买 nike

我将 RStudio IDE (v 0.99.323) 与 rmarkdown 一起使用,并尝试使用 htmlreg 通过 knitr 生成模型表生成 MSWord 输出。怀疑我错过了一些简单的事情。

下面附加的 rmarkdown block 创建了一个单独的 word 文件“mytable.doc”,其中包含一个漂亮的表格。但是,当我在 RStudio IDE 中单击“Knit Word”时,htmlreg(m) 行会在 MSWord 文档中生成 html 表格代码。我做错了什么?

非常感谢! --戴尔

```{r, results='asis'}
library(MASS)
library(texreg)
data(menarche)
m <- glm(cbind(Menarche, Total-Menarche) ~ Age, family=binomial(logit), data=menarche)

htmlreg(m, file = "mytable.doc", caption="Age at Menarche", inline.css = TRUE, doctype = TRUE, html.tag = TRUE, head.tag = TRUE, body.tag = TRUE, ci.force=TRUE, ci.test=NULL,bold=TRUE)

htmlreg(m)
```

最佳答案

在你的 block 中尝试这个,仍然使用 result='asis':

library(pander)
pander(m)

http://www.r-statistics.com/2013/03/write-ms-word-document-using-r-with-as-little-overhead-as-possible/ 致敬

他们还提出了一种很好的方法来阐明代码块,这样您就可以调用 print(m),markdown 中的输出将调用 pander 中的适当函数。

关于r - 使用包 texreg 和 RStudio/rmarkdown/knitr 创建模型汇总表的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29033724/

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