i wanted to view the code behind the families in R, like for example:
make.link("logit")
make.link("identity")
make.link("probit")
Now is saw in the R - repsones that there were functions called, written in programming language C:
Examples:
.Call(C_logit_link, mu)
.Call(C_logit_linkinv, eta)
.Call(C_logit_mu_eta, eta)
And now in would like to access this specific code. Is there any way I can do that?