I have implemented a model using the glm() function and specifiy the family distribution as gamma:
glmer(FirstSteeringTime ~ error_rate + (1 + error_rate | pNum), family = Gamma, data = modellingdata)
I know that you can apply link functions such as "identity" or "log" to the gamma distributions. Thus I have two questions:
1) What is the default link function when I specify my model as I have without explicitly mentioned a link function?
2) What is the purpose of the different link functions? I'm confused as to the effect they have on my data...
Any help is most appreciated - thank you!