Good morning, I'd like to estimate a simple multinomial logit model in R (not a McFadden conditional logit). For instance, I'd like to estimate the probability of someone having one of eight titles in a company with the independent variables being the company characteristics. A binary logit is well documented. What about the multinomial? Thanks, Walt Paczkowski
Walter Paczkowski wrote:> Good morning, > > I'd like to estimate a simple multinomial logit model in R (not a McFadden conditional logit). For instance, I'd like to estimate the probability of someone having one of eight titles in a company with the independent variables being the company characteristics. A binary logit is well documented. What about the multinomial? > > Thanks, > > Walt Paczkowski > > ______________________________________________ > R-help at stat.math.ethz.ch mailing list > https://stat.ethz.ch/mailman/listinfo/r-help > PLEASE do read the posting guide http://www.R-project.org/posting-guide.html > and provide commented, minimal, self-contained, reproducible code.Have you considered the results of RSiteSearch("multinomial", restrict="function") which point to a number of relevant packages and functions? -- Chuck Cleland, Ph.D. NDRI, Inc. 71 West 23rd Street, 8th floor New York, NY 10010 tel: (212) 845-4495 (Tu, Th) tel: (732) 512-0171 (M, W, F) fax: (917) 438-0894
Hi all, You can consult help of the functions multinom (library(MASS)) and vglm (library(VGAM)). hope this help, Pierre Selon Walter Paczkowski <dataanalytics at earthlink.net>:> Good morning, > > I'd like to estimate a simple multinomial logit model in R (not a McFadden > conditional logit). For instance, I'd like to estimate the probability of > someone having one of eight titles in a company with the independent > variables being the company characteristics. A binary logit is well > documented. What about the multinomial? > > Thanks, > > Walt Paczkowski > > ______________________________________________ > R-help at stat.math.ethz.ch mailing list > https://stat.ethz.ch/mailman/listinfo/r-help > PLEASE do read the posting guide http://www.R-project.org/posting-guide.html > and provide commented, minimal, self-contained, reproducible code. > >