Displaying 1 result from an estimated 1 matches for "continuous_covari".
2007 May 14
1
Predicted values from a logistic model
...39;t find a
satisfactory answer online, and I am not very accustomed to working
with R (Matlab is my poison. :-)). Any help would be greatly
appreciated.
I have a model with a three-level factor and a continuous covariate.
The call I use is:
mymodel <- glm(Response ~ Factor_covariate + continuous_covariate -
1, family = binomial(link = "logit"))
I would like to generate predicted values for a given level of the
covariate, and a given level of the factor. For instance, I want it
to give me a fitted value for the response at factor level 1 and
continuous covariate value 10. How wo...