search for: totnum

Displaying 2 results from an estimated 2 matches for "totnum".

2010 Jul 21
1
post hoc test for lme using glht ?
..., other people are successfully using the glht function from the multcomp package to perform post-hoc tests. I've tried multiple iterations, but can't seem to get it to work. Here is (a subset of) what I have been trying. Any help would be greatly appreciated: > model.3<-lme(fixed=Totnum~Wk*Pop, random=~1|nUID, data=nona) #Wk has 6 levels, 0-5; Pop has 2 levels; nUID is a unique ID given to each individual (multiple individuals from each population were re-measured each week) > anova(model.3) numDF denDF F-value p-value (Intercept) 1 592 649.7753 <.0001 W...
2011 Sep 02
2
how to return back to go on my cycle while read my files
hi ,when i read a lots of files for (i in 1:totnum) { cop_x_data<-read.table(flnm[i],skip=2) if(i==1) {cop_data=cop_x_data} else {cop_data=rbind(cop_data,cop_x_data)} } some of the files are missing . so this loop can not go on .I wonder how can I go on the loop cycle while reading the files just like the command read(unit,err=linenum) in fort...