将 R 表导出为 HTML
有没有办法轻松将 R 表导出到简单的 HTML 页面?
Is there a way to easily export R tables to a simple HTML page?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
有没有办法轻松将 R 表导出到简单的 HTML 页面?
Is there a way to easily export R tables to a simple HTML page?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(5)
xtable
包中的xtable
函数可以将R表导出为HTML表。 此博客条目< /a> 描述如何从 Sweave 文档创建 HTML 页面。The
xtable
function in thextable
package can export R tables to HTML tables. This blog entry describes how you can create HTML pages from Sweave documents.值得一提的是,有一个新的包专门设计用于以简单直观的方式将 data.frames(或表格)转换(并使用 css 样式)为 HTML 表格。它称为
tableHTML
。您可以在下面看到一个简单的示例:您可以在此处查看详细教程 也是如此。
It might be worth mentioning that there has been a new package specifically designed to convert (and style with css) data.frames (or tables) into HTML tables in an easy and intuitive way. It is called
tableHTML
. You can see a simple example below:You can see a detailed tutorial here as well.
除了 @nullglob 提到的
xtable
之外,还有另外三个包可能会在这里派上用场:Apart from
xtable
mentioned by @nullglob there are three more packages that might come handy here:表包 gt 的语法也是一个选项。
以下是文档中用于生成 HTML 表的示例:
The grammar of tables package gt is also an option.
Here's the example from the docs for generating a HTML table:
在 DT 包的问题中,有人发布了如何使用 DT 包获取表格中的 html< /a>.我已粘贴相关示例代码,并对其进行修改以引用所有列:
targets = "_all"
。我希望这有帮助。
In an issue for the DT package, someone posted how to use the DT package to get html in tables. I've pasted the relevant example code, modifying it to reference all columns with:
targets = "_all"
.I hope this helps.