Displaying 1 result from an estimated 1 matches for "f_haarpredict".
2005 Sep 27
4
dynamic lists (data frames?)
Can someone please show me what I need to get something like this to
work
for(a in c(1:5)){
data$a<-c(a:10)
}
so that i end up with a structure
data$1<-[1,2,3,4,5,6,7,8,9,10]
data$2<-[2,3,4,5,67,8,9,10]
data$3<-[3,4,5,67,8,9,10]
data$4<-[4,5,67,8,9,10]
data$5<-[5,67,8,9,10]
thanks loads
Tom