Re: [R] need help in logistic regression

2012-05-28 Thread Richard M. Heiberger
Look at ?predict.glm mydata.glm <- glm(formula = Death ~ Temperature, family = binomial(link = "logit"), data = mydata) and see that predict(mydata.glm, type="response") gives the predictions on the probability scale. On Mon, May 28, 2012 at 10:16 AM, eddie smith wrote: > Hello everyone, > > I

[R] need help in logistic regression

2012-05-28 Thread eddie smith
Hello everyone, I tried to understand the relationship between temperature and the death of an organism by using logistic regression. glm(formula = Death ~ Temperature, family = binomial(link = "logit"), data = mydata) Coefficients: Estimate Std. Error z value Pr(>|z|)