1 / 9

Generalized Linear Models

(know this). Generalized Linear Models. An alternative to data transformations Principle is to make the model fit the data, rather than changing the data to fit the model Models include link functions that allow heterogeneous variances and nonlinearity

papina
Télécharger la présentation

Generalized Linear Models

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. (know this) Generalized Linear Models • An alternative to data transformations • Principle is to make the model fit the data, rather than changing the data to fit the model • Models include link functions that allow heterogeneous variances and nonlinearity • Analysis and estimation are based on maximum likelihood methods • Becoming more widely used - recommended by the experts • Need some understanding of the underlying theory to implement properly Notes adapted from ASA GLMM Workshop, Long Beach, CA, 2010

  2. Generalized Linear Models ANOVA/Regression model is fit to a non-normal data set Three elements: • Randomcomponent – a probability distribution for Yi from the exponential family of distributions (this is known) • Systematic component – represent the linear predictors (X variables) in the model • Link function – links the random and systematic elements Form is mean + trt effect No error term

  3. Log of Distribution = “Log-Likelihood” • Binary responses (0 or 1) • Probability of success follows a binomial distribution “canonical parameter” Takes the form Y * function of P

  4. Example – logit link µ can only vary from 0 to 1  can take on any value Use an inverse function to convert means to the original scale

  5. Some Common Distributions & Link(s)

  6. (know this) RBD Mixed Model Analyses with SAS • Mixed Models - contain both random and fixed effects • Note that PROC GLM will only handle LM! • PROC GLIMMIX can handle all of the situations above

  7. (know this) Linear Models for an RBD in SAS • Treatments fixed, Blocks fixed • PROC GLM (normal) or PROC GENMOD (non-normal) • all effects appear in model statement Model Response = Block Treatment; • Treatments fixed, Blocks random • PROC MIXED (normal) or PROC GLIMMIX (non-normal) • Only fixed effects appear in model statement Model Response = Treatment; Random Block;

  8. GLIMMIX basic syntax for an RBD procglimmix; class treatment block; model response = treatment / link=log sdist=poisson; random block; lsmeans treatment/ilinkdiff; • fixed effects go in the model statement • random effects go in the random statement • default means and standard errors from lsmeans statement are on a log scale • ilink option gives back-transformed means on original scale and estimates standard errors on original scale • diff option requests significant tests between all possible pairs of treatments in the trial,

  9. (know this) Estimation in LMM, GLM, and GLMM • Does not use Least Squares estimation • Does not calculate Sums of Squares or Mean Squares • Estimates are by Maximum Likelihood Output includes • Source of variation • degrees of freedom • F tests and p-values • Treatment means and standard errors • Comparisons of means and standard errors

More Related