Displaying 1 result from an estimated 1 matches for "intcpt".
Did you mean:
intrcpt
2006 Jun 11
0
Error in "[.default"(mf[, 1], , 1) : incorrect number of dimensions
.../lindsey/stable/src/contrib/html/
> riesby<-read.table("http://tigger.uic.edu/~hedeker/RIESBY.DAT.txt")
Warning message:
number of items read is not a multiple of the number of columns
> riesby<-riesby[1:396,]
> id<-factor(riesby[,1])
> hamD<-riesby[,2]
> intcpt<-riesby[,3]
> week<-factor(riesby[,4])
> endog<-riesby[,5]
> endweek<-riesby[,6]
> glmm(hamD~intcpt,family=gaussian,data=data.fram(hamD,intcpt,week),nest=week)
Error in inherits(data, "repeated") : could not find function "data.fram"
> glmm(hamD~intcpt...