logLik_o {onls} | R Documentation |
Log-Likelihood for the orthogonal residuals
Description
Returns the log-likelihood as calculated from the orthogonal residuals obtained by residuals_o
.
Usage
logLik_o(object)
Arguments
object |
an object returned from |
Value
The log-likelihood as calculated from the orthogonal residuals.
Note
logLik_o
has no other generic functions on top, so for calculating AIC
, one has to apply AIC(logLik_o(model))
, see 'Examples'. The usual logLik
applies to the vertical residuals of the orthogonal model.
Author(s)
Andrej-Nikolai Spiess
Examples
DNase1 <- subset(DNase, Run == 1)
DNase1$density <- sapply(DNase1$density, function(x) rnorm(1, x, 0.1 * x))
mod <- onls(density ~ Asym/(1 + exp((xmid - log(conc))/scal)),
data = DNase1, start = list(Asym = 3, xmid = 0, scal = 1))
logLik_o(mod)
## compare AIC of vertical versus orthogonal residuals.
AIC(mod)
AIC(logLik_o(mod))
[Package onls version 0.1-2 Index]