Questions tagged [link-function]
A transformation of a parameter governing a response distribution that is used as a crucial part of the generalized linear model to map that parameter's range (which may be from 0 to 1, or only positive values, e.g.) to the real number line $(-\infty, +\infty)$.
216 questions
0
votes
0
answers
56
views
Interpreting the predicted values from family = poisson(link="log") , binary outcome
I am fitting a simple model for dataset where the outcome is binary (1 or 0).
...
2
votes
0
answers
172
views
Prediction intervals for GLM
I know this is a topic that "often" pops up. But despite heavy search, I didn't really find a proper answer to my questions. Hopefully someone here can help me out.
I'm interested in ...
4
votes
1
answer
127
views
Interpretation of the coefficients in a GLM model using the log link
When the log link is used in the GLM setting, the target mean and linear predictor are related via
$$
\mu = e^{\beta_0}\prod_{i=1}^p e^{\beta_i X_i}
$$
My study manual says that when $X_j$ is a ...
0
votes
0
answers
113
views
Unsure of appropriate transformation / link function in GAM
I am working with a response variable with kind of funny characteristics, and I am not sure of the appropriate transformation and/or link function for my model, based on the diagnostic plots I am ...
15
votes
2
answers
1k
views
Why does glm in R with family binomial(link="log") sometimes require start values?
While simulating some studies and analyzing them in R with glm(…, family=binomial) and binary and continuous covariates the function sometimes complains:
no valid ...
2
votes
0
answers
45
views
Difference in modelling between transforming the response and using a non-normal distribution? [duplicate]
In regression modeling, what is the difference between fitting a model by transforming the response variable (e.g., applying a log transformation to y) and then backtransforming the outputs to the ...
1
vote
0
answers
166
views
Does the cloglog link function correspond to a named distribution?
Common choices for a link function in a statistical model that maps $\mathbb{R}$ to $(0, 1)$ include logit, probit, and cloglog.
For logit models, the inverse link function is $\frac{1}{1+e^{-x}}$, ...
1
vote
1
answer
168
views
How to derive canonical link function of exponential distribution in GLM
I want to know the derivation, how to basically calculate it
1
vote
0
answers
49
views
How do you visualise the conditional esperance of your outcome variable depending on the predictor?
I've read several posts regarding the choice of distributions and link functions for GLMs. Although I'm far from understanding it all, what I've gathered is that the purpose of the link function is to ...
0
votes
0
answers
75
views
Handling Non-normality of Reaction Time Data in Mixed Models
I am examining the effect of 'Phase' on reactions time (RT) data using a mixed model in lme4.
However, as is common with RT data, the residuals are non-normal.
This is the first model, which is a ...
0
votes
0
answers
107
views
GLM link function, variance Function, and dispersion for linear regression
we were recently introduced in class to GLM's and I am still trying to wrap my head around link functions, variance functions and dispersion paramters. In particular we were asked re-write the linear ...
1
vote
1
answer
179
views
Link function for exponential regression
I have a dataset with an exponential relationship that I'm linearizing before fitting with code like this:
glm(log(y) ~ log(x), family = gaussian)
I'm trying to ...
3
votes
0
answers
183
views
Custom link function for logistic regression model
I am trying to build a generalized linear model with a custom link function. This is a follow up to this question: Understand and specify a generalized logistic model in R
In this paper A Generalized ...
3
votes
1
answer
257
views
Understand and specify a generalized logistic model in R
I am reading a paper in which the authors models tree survival (mortality). They go and remeasure tagged trees for decades to establish "survival functions" for the given tree species and ...
0
votes
0
answers
155
views
Residuals assumptions in glmm not verified! Help
I am trying out GLMMs models to test whether two categorical variables (species and sex) and their interaction (sex + species + sex*species= fixed factors) influence certain acoustic parameters (...