我正在尝试运行这样的循环函数:
x <- c(1,2,3,4,7,8,9,10,13,14,15,16,19,20,22,23,24,26)
n<-rep(NA,length(x))
for (ii in 1:length(x)){
n[ii]<-subset(dat1, Plot==ii)
}
但是,出现了错误消息:
There were 18 warnings (use warnings() to see them)
我正在寻找的输出是来自 main data 的 18 个单独的数据 n1,n2,n3,n4,n7,...n24&n26 子集dat1
。