GLM – Can Generalized Linear Models Be Used for Normally Distributed Dependent Variables?

distributionsgaussian processgeneralized linear modelnormal distributionregression

Let's say I want to check the impact of some predictor variables on a y variable, which has a Gaussian (normal) distribution. Logically, the first analysis that comes to mind to test this relationship is a multiple linear regression. However, I would like to use a Generalized Linear Model (GLM), although I'm aware that this approach is suitable for cases where the dependent variable doesn't have a normal distribution. Still, is there any suitable GLM to handle my normally distributed y variable?

Best Answer

The normal distribution is part of the exponential family, and so analyzing a gaussian GLM is completely natural.

The theory of linear regression is much richer than any of its other GLM cousins however, so although you could analyze a guassian GLM (a la deviance goodness of fit tests, etc) there may be more powerful tests you can use.

Related Question