Displaying 1 result from an estimated 1 matches for "dat16".
Did you mean:
data16
2011 Nov 27
1
Simplifying my code
...lete(dat.mice,5)
dat6=complete(dat.mice,6)
dat7=complete(dat.mice,7)
dat8=complete(dat.mice,8)
dat9=complete(dat.mice,9)
dat10=complete(dat.mice,10)
dat11=complete(dat.mice,11)
dat12=complete(dat.mice,12)
dat13=complete(dat.mice,13)
dat14=complete(dat.mice,14)
dat15=complete(dat.mice,15)
dat16=complete(dat.mice,16)
dat17=complete(dat.mice,17)
dat18=complete(dat.mice,18)
dat19=complete(dat.mice,19)
dat20=complete(dat.mice,20)
I would like to simplify this into a for loop. I thought this would work:
for(i in 1:20){
dat[i]=complete(dat.mice,[i]
}
But it doesn't. Any tips?
Chr...