gpt4 book ai didi

r - 如何在 R Markdown (rmarkdown) html 输出注释中显示重要的星星?

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

我想使用 R Markdown 在 HTML 文档中显示回归输出。我试过 texregstargazer包。我现在的问题是,在笔记中我无法将重要的星星带入生活。由于自动生成,我似乎无法摆脱它们。我一直在困惑 thisthis但没有成功。我错过了什么?非常感谢!!

这是一些代码:

```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
```
```{r data}
library(car)
lm1 <- lm(prestige ~ income + education, data=Duncan)
```
## with STARGAZER
```{r table1, results = "asis", message=FALSE}
library(stargazer)
stargazer(lm1, type="html", notes="stargazer html 1") # nothing
stargazer(lm1, type="html", notes="stargazer html 2", star.char = "\\*") # nothing, even gone in table
```
## with TEXREG
```{r table2, results = "asis", message=FALSE}
library(texreg)
htmlreg(lm1, custom.note="%stars. htmlreg") # nothing
htmlreg(lm1, custom.note="%stars. htmlreg", star.symbol = "\\*") # still nothing!
```

注意:问题是以前的 sub-question我现在已经分手了。

最佳答案

使用星号的 HTML 实体:

star.symbol='&#42;'

http://www.ascii.cl/htmlcodes.htm .

您还可以手动添加“图例”:
stargazer(lm1, type="html", notes = "<em>&#42;p&lt;0.1;&#42;&#42;p&lt;0.05;&#42;&#42;&#42;p&lt;0.01</em>", notes.append = F)

enter image description here

关于r - 如何在 R Markdown (rmarkdown) html 输出注释中显示重要的星星?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44473379/

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