I apologize if this has been asked and answered elsewhere -- I've tried to find the answer and could not.
In R, if you use the normal plot()
command on a glm
object, one of the graphs displayed is a QQ plot. It explicitly states at the top that it is Normal QQ plot.
However, GLMs (unlike simple LMs) allow one to assume that the response variable is not normally distributed. For instance, you may specify in your glm equation that you are assuming a gamma distribution.
Why does R show a normal QQ plot in such a case? Why isn't the QQ against a gamma distribution? Is there even any value in looking at the normal QQ plot unless your "family" parameter in your glm setup is "gaussian"?
Many, many thanks for any help.