
Link parsers
link_parsers.Rd
Functions to parse the link (or inverse link) from a word to a function
Details
The following are valid link names:
- identity
The function
f(x) = x
.with inversefinv(x) = x
- logit
The function
f(x) = ln(x / (1 - x))
with inversefinv(x) = 1 / (1 + exp(-x))
- log-complement
The function
f(x) = ln(1 - x)
with inversefinv(x) = 1 - exp(x)
- hawkins
The function
f(x) = ln(x + sqrt(x^2 + 1))
with inversefinv(x) = 0.5 * exp(-x) * (exp(2 * x) - 1)
- exponential
The function
f(x) = exp(x)
with inversef(x) = ln(x)
See also
linkfuns and inv_linkfuns