print.xtable 仅显示,不保存到磁盘

发布于 2024-11-14 14:02:24 字数 229 浏览 4 评论 0原文

还有其他人遇到这个问题吗?

> d <- data.frame(x=1:5, y=6:10)
> print(d, type="html", file="d:/delete/test5.html")
  x  y
1 1  6
2 2  7
3 3  8
4 4  9
5 5 10

我的R版本是2.12.2版本,xtable版本是xtable_1.5-6。

Is anyone else having this problem?

> d <- data.frame(x=1:5, y=6:10)
> print(d, type="html", file="d:/delete/test5.html")
  x  y
1 1  6
2 2  7
3 3  8
4 4  9
5 5 10

My R version is version 2.12.2 and xtable version is xtable_1.5-6.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

倚栏听风 2024-11-21 14:02:24

您尚未创建 xtable 对象,仅创建了数据框。因此 print 正在为数据帧运行适当的方法,其中不包括写入文件选项。尝试:

d <- data.frame(x=1:5, y=6:10)
x <- xtable(d)
print(x, type="html", file="d:/delete/test5.html")

更一般地说,如果您想将内容写入文件,可以尝试 cat

You haven't created an xtable object, only a data frame. So print is running the appropriate method for a data frame which doesn't include the writing to file options. Try:

d <- data.frame(x=1:5, y=6:10)
x <- xtable(d)
print(x, type="html", file="d:/delete/test5.html")

More generally, if you want to write things to a file, you can try cat.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文