print.xtable 仅显示,不保存到磁盘
还有其他人遇到这个问题吗?
> 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您尚未创建
xtable
对象,仅创建了数据框。因此print
正在为数据帧运行适当的方法,其中不包括写入文件选项。尝试:更一般地说,如果您想将内容写入文件,可以尝试
cat
。You haven't created an
xtable
object, only a data frame. Soprint
is running the appropriate method for a data frame which doesn't include the writing to file options. Try:More generally, if you want to write things to a file, you can try
cat
.