Hi, I am starting to work with R. I need to performe a General linear model and a Generalized mixed model, what are the package I have to use for? what is the difference between them? thanks letizia _________________________________________________________________ [[alternative HTML version deleted]]
Hi, On Aug 26, 2009, at 6:53 AM, Letizia Campioni wrote:> > Hi, > > I am starting to work with R. > > I need to performe a General linear model and a Generalized mixed > model, what are the package I have to use for?R> RSiteSearch("general linear model") R> RSiteSearch("Generalized mixed model") Will provide many answers. -steve -- Steve Lianoglou Graduate Student: Computational Systems Biology | Memorial Sloan-Kettering Cancer Center | Weill Medical College of Cornell University Contact Info: http://cbio.mskcc.org/~lianos/contact
Letizia Campioni wrote:> > > Hi, > > I am starting to work with R. > > I need to performe a General linear model and a Generalized mixed model, > what are the package I have to use for? > > what is the difference between them? > >General linear models (called GLM mostly by SAS users) are implemented by lm (no need to install or load additional packages). General*ized* linear models (called GLM by everyone else): use glm (still no need for extra packages). Linear mixed models (LMMs): nlme (library("nlme"), no need to install extras. Generalized linear mixed models (GLMMS): lme4 -- install.packages("lme4"); library("lme4"), ?glmer This list is not generally for "general statistics" questions -- you're expected to know *what* you want to do, and we will help you with *how* to do it in R (provided you have read the posting guide and formulated a useful question). I would suggest a book -- check out the R books page ( http://www.r-project.org/doc/bib/R-books.html ) -- maybe Faraway? -- View this message in context: http://www.nabble.com/GLMs-tp25150823p25151455.html Sent from the R help mailing list archive at Nabble.com.
Apparently Analagous Threads
- Comparing GLMMs and GLMs with quasi-binomial errors?
- VST plugin (ez drummer)
- generalized mixed model + mcmcsamp
- How to produce a graph of glms in R?
- Is there a function in R to evaluate the adjusted AIC or other statistc where overdispersion existed in GLMs?