Displaying 1 result from an estimated 1 matches for "coeffm".
Did you mean:
coeff
2013 Jan 17
0
help with error: DV "converted to a factor"
...el<-paste(paste(DV[1],"~1",sep=""),paste(IV,collapse="+"),paste(int,collapse="+"),sep="+")
modeloutput<-glm(model,family=binomial(logit),data=dataset)
#assigning all output from every possible combo of ref values to a single
matrix named coeffM
if(j==1){coeffM<-coef(summary(modeloutput))}
if(j>1){coeffM<-rbind(coeffM,coef(summary(modeloutput)))}
}
*I tested each step of the code individually, and each individual step runs
fine. However, when I run the whole set of code at once, I get the
following error message after th...