statsmodels.regression.linear_model.WLS.loglike¶
-
WLS.
loglike
(params)[source]¶ Compute the value of the gaussian log-likelihood function at params.
Given the whitened design matrix, the log-likelihood is evaluated at the parameter vector params for the dependent variable Y.
- Parameters
- paramsarray_like
The parameter estimates.
- Returns
float
The value of the log-likelihood function for a WLS Model.
Notes
−n2logSSR−n2(1+log(2πn))−12log(|W|)where W is a diagonal weight matrix matrix and SSR=(Y−ˆY)′W(Y−ˆY) is the sum of the squared weighted residuals.