I am looking for R packages that can make a Logistic Regression model with parameter estimation by Maximum Likelihood Estimation. Many thanks for helping out.
Hi, On Mon, Feb 6, 2012 at 10:08 AM, Ana <rrasterr at gmail.com> wrote:> I am looking for R packages that can make a Logistic Regression model > with parameter estimation by Maximum Likelihood Estimation.How are you looking? Did you perhaps try Google https://www.google.com/#q=r-help+Logistic+Regression+Maximum+Likelihood+Estimation or rseek.org http://www.rseek.org/?cx=010923144343702598753%3Aboaz1reyxd4&newwindow=1&q=Logistic+Regression+Maximum+Likelihood+Estimation&sa=Search+functions%2C+lists%2C+and+more&cof=FORID%3A11&siteurl=rseek.org%2F or one of the other R-centric search functions out there, like the ones built right into R? How did what you found not meet your needs? Sarah> > Many thanks for helping out. >-- Sarah Goslee http://www.functionaldiversity.org
On 02/06/2012 03:08 PM, Ana wrote:> I am looking for R packages that can make a Logistic Regression model > with parameter estimation by Maximum Likelihood Estimation. > > > Many thanks for helping out. > > ______________________________________________ > R-help at r-project.org mailing list > https://stat.ethz.ch/mailman/listinfo/r-help > PLEASE do read the posting guidehttp://www.R-project.org/posting-guide.html> and provide commented, minimal, self-contained, reproducible code.Hi Ana, I worked out some maximum likelihood estimates for logistic regression in R on my website: http://www.netstorm.be/home/lrm Best regards Thomas
I'm surprised not to see the simple answer: "glm" models return the MLE estimate. fit <- glm(y ~ x1 + x2 + .... , family='binomial') There is no need for special packages, this is a standard part of R. Terry Therneau ---------------- begin included message -------------- On 02/06/2012 03:08 PM, Ana wrote:> I am looking for R packages that can make a Logistic Regression model > with parameter estimation by Maximum Likelihood Estimation. > > > Many thanks for helping out. > > ______________________________________________ > R-help at r-project.org mailing list > https://stat.ethz.ch/mailman/listinfo/r-help > PLEASE do read the posting guidehttp://www.R-project.org/posting-guide.html> and provide commented, minimal, self-contained, reproducible code.Hi Ana, I worked out some maximum likelihood estimates for logistic regression in R on my website: http://www.netstorm.be/home/lrm Best regards Thomas