如何保存R输出?

时间:2016-03-21 05:42:29

标签: r

我在R中有以下脚本。脚本运行并提供输出。但是文件没有保存。如何保存输出?

write.table(paste(main_root,"quan_2012_12_",j,"_",6*i,"<-y^2",sep=""))

1 个答案:

答案 0 :(得分:2)

根据?write.table

  

write.table(x,file =&#34;&#34;,append = FALSE,quote = TRUE,sep =&#34;&#34;,               eol =&#34; \ n&#34;,na =&#34; NA&#34;,dec =&#34;。&#34;,row.names = TRUE,               col.names = TRUE,qmethod = c(&#34; escape&#34;,&#34; double&#34;),               fileEncoding =&#34;&#34;)

在OP的代码中,只有file部分,因此最好提供&#39; x&#39;或对象名称

write.table(x=yourObject, file= filename)

以及其他需要的参数。