When I'm fitting a generalized linear model, I use the glm() function like this:
fit <- glm(formula=y ~ x,
data=someFrame,
family=gaussian(link="log"))
But I don't know, what does the name of the family mean. It's described like this in the the documentation:
Family objects provide a convenient way to specify the details of the models used by functions such as glm. See the documentation for glm for the details on how such model fitting takes place.
But still, I don't know, what is it exactly. Is it an estimated distribution of observed data?