Displaying 1 result from an estimated 1 matches for "aoutomate".
2011 Apr 07
1
Automated Fixed Order Stepwise Regression Function
...ted
anova1<-rbind(rb[1,],rb[4,],rb[8,],rb[13,],rb[14,])
#Comment 4--the rb's follow a pattern of 1+3+4+5...+n variables
#then I row bind these starting with 1 and rowbind one more after the last
#...rb to include the bottom piece of the anova table that tells
#...about residuals (how do I aoutomate this?)
anova<-anova1[,1:num.of.var]
anova.table<-data.frame(anova)
#Comment 5--Something that bugs me here is that I have to turn it into a dataframe to
#...add the totals row and the delta R^2 (tried playing w/ tkinsert to no avail)
#...I miss the stuff that's at the bottom of the anov...