Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我刚从 bcp 包中得到输出,但它是一个“bcp”类,不能使用write.table函数保存到文件中,我需要将类更改为 data.frame 类型或尝试其他一些方法。
write.table
'bcp' 类的对象是一个 R 列表。存储它们的最佳方法是:
save(objname, file="bcpobjt.Rdta")
如果您需要仍然可以解释为完整 R 对象的 ASCII 表示,请使用dputor dump。
dput
dump
如果您想要屏幕输出,请使用sink或capture.output:
sink
capture.output
capture.output(print(objname), file="myoutfil.txt")
或者:
sink("myoutfil.txt") print(objname) sink()