如何在R Markdown(rmarkdown)html输出笔记中显示重要的明星?

时间:2017-06-10 12:36:53

标签: r r-markdown stargazer texreg

我想使用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我现在已经拆分了。

1 个答案:

答案 0 :(得分:3)

使用星号的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