我是R和 R markdown 的新手,想知道如何在 html 文件中制作漂亮的表格。我正在尝试使用ascii
,但是当我输入下面的代码时,我得到一个在R控制台窗口中看起来不错的表格,但在 html 中看起来很糟糕。我很确定这张桌子太宽了,但我不确定,它是 15 列,每列 11 个 obs。任何帮助将不胜感激,如果我不清楚,我可以添加更多信息。
print(ascii(FINALTABLE), type = "org", include.colnames = TRUE)
我是R和 R markdown 的新手,想知道如何在 html 文件中制作漂亮的表格。我正在尝试使用ascii
,但是当我输入下面的代码时,我得到一个在R控制台窗口中看起来不错的表格,但在 html 中看起来很糟糕。我很确定这张桌子太宽了,但我不确定,它是 15 列,每列 11 个 obs。任何帮助将不胜感激,如果我不清楚,我可以添加更多信息。
print(ascii(FINALTABLE), type = "org", include.colnames = TRUE)
您可以使用该pander
包生成Rmarkdown
兼容的表:
> library(pander)
> pandoc.table(head(iris[, 1:3]), style="rmarkdown")
| Sepal.Length | Sepal.Width | Petal.Length |
|:--------------:|:-------------:|:--------------:|
| 5.1 | 3.5 | 1.4 |
| 4.9 | 3 | 1.4 |
| 4.7 | 3.2 | 1.3 |
| 4.6 | 3.1 | 1.5 |
| 5 | 3.6 | 1.4 |
| 5.4 | 3.9 | 1.7 |