logLik.gsl_nls | R Documentation |
Returns the model log-likelihood of a fitted "gsl_nls"
object.
## S3 method for class 'gsl_nls'
logLik(object, REML = FALSE, ...)
object |
An object inheriting from class |
REML |
logical value; included for compatibility reasons only, should not be used. |
... |
At present no optional arguments are used. |
Numeric object of class "logLik"
identical to logLik
.
logLik
## data
set.seed(1)
n <- 25
xy <- data.frame(
x = (1:n) / n,
y = 2.5 * exp(-1.5 * (1:n) / n) + rnorm(n, sd = 0.1)
)
## model
obj <- gsl_nls(fn = y ~ A * exp(-lam * x), data = xy, start = c(A = 1, lam = 1))
logLik(obj)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.