将R表中的表逐行写入'循环

时间:2017-08-30 14:39:57

标签: r for-loop write.table

我通常使用以下代码将结果写入c:\...

中的文件中
y=rnorm(1000)
x=rep(0,length(y))
df=data.frame(rep(0,length(y)) , rep(0,length(y)))
for(i in 1:1000){
x[i]=y[i]+1
df[i,]=c(i,x[i])

print(df[i,])
flush.console()
}
write.table(df,"C:/.../results.txt")

我有时(在更复杂的情况下)for循环中有ERROR,所以在write.table中我们什么都没有。 我的问题是:如何在此df循环中"c:\..."逐行for写一遍

0 个答案:

没有答案