statsmodels.emplike.originregress.ELOriginRegress#
- class statsmodels.emplike.originregress.ELOriginRegress(endog, exog)[source]#
Empirical Likelihood inference and estimation for linear regression through the origin
- Parameters:
- endogarray_like
Array of response variables.
- exogarray_like
Array of exogenous variables. Assumes no array of ones
- Attributes:
- endogarray_like
Array of response variables
- exogarray_like
Array of exogenous variables. Assumes no array of ones.
- nobs
int Number of observations.
- nvar
float Number of exogenous regressors.
Methods
fit()Fits the model and provides regression results
predict(params[, exog])Return fitted values for a regression through the origin
Methods