Description Usage Arguments Value See Also Examples
Log-likelihood for an object of class 'lmvar'
1 2 |
object |
Object of class 'lmvar' |
... |
For compatibility with |
'logLik' object, a number containing the log-likelihood with an attribute 'df' containing the degrees of freedom
dfree
for the degrees of freedom for an object of class 'lmvar'.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | # As example we use the dataset 'attenu' from the library 'datasets'. The dataset contains
# the response variable 'accel' and two explanatory variables 'mag' and 'dist'.
library(datasets)
# Create the model matrix for the expected values
X = cbind(attenu$mag, attenu$dist)
colnames(X) = c("mag", "dist")
# Create the model matrix for the standard deviations.
X_s = cbind(attenu$mag, 1 / attenu$dist)
colnames(X_s) = c("mag", "dist_inv")
# Carry out the fit
fit = lmvar(attenu$accel, X, X_s)
# Show the log-likelihood and the degrees of freedom of the fit
# using the 'print' method for an object of class 'logLik'
logLik(fit)
# Obtain the log-likelihood itself
logLik(fit)[1]
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.