I'm using the VGAM
package to do a regression between two samples which are Gamma distributed.
Is it possible to choose the identity function for the link? If yes, how?
I'm using these code line and it works:
fit <- vglm(Y ~ X , family = gammaR, trace = TRUE)
But when I try to change the link function it doesn't work, e.g.:
fit <- vglm(Y ˜ X, family = gammaR(link= "identitylink"), trace = TRUE)
I have the following error message:
unused argument (link = "identitylink")