私は RStudio IDE (v 0.99.323) を使用しており、MSWord 出力を生成するためにrmarkdown
モデル テーブルを生成しようとしています。簡単なことを見逃したのではないかと思います。knitr
htmlreg
以下に追加された rmarkdown チャンクは、美しい表を含む別の単語ファイル '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)
```