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