statsmodels.emplike.originregress.ELOriginRegress.predict#
- ELOriginRegress.predict(params, exog=None)[source]#
Return fitted values for a regression through the origin
- Parameters:
- params
ndarray Parameters, including the (fixed at 0) intercept term, as returned by fit.
- exogarray_like,
optional Exogenous variables to use for the prediction. If None, the exog attached to the model is used.
- params
- Returns:
ndarrayThe predicted values, exog @ params.