statsmodels.emplike.aft_el.emplikeAFT.predict# emplikeAFT.predict(params, exog=None)[source]# Return the linear predictor, params multiplied by exog Parameters: paramsndarrayRegression coefficients used to form the prediction. exogndarray, optionalValues of the explanatory variables at which to form the prediction. If None, the model’s exog is used. Default is None. Returns: ndarrayThe predicted values, exog dot params.