我正在尝试通过循环填充数据框。我在一定程度上成功了,但无法在函数中绑定该循环
iterations = 34
variables = 6
v_log <- matrix(ncol=variables, nrow=iterations)
for (i in 1:34)
{
v_log[i,]<-c(1,"c1", "c2","c3", "c4", "c5")
}
v_log1=as.data.frame(v_log)
但是当我试图在函数中绑定它们时,
f1<- function() {
iterations = 34
variables = 6
v_log <- matrix(ncol=variables, nrow=iterations)
for (i in 1:34)
{
v_log[i,]<-c(1,"c1", "c2","c3", "c4", "c5")
}
v_log1=as.data.frame(v_log)
}
在执行函数时,像 f1() 什么都不会填充。
请帮忙。