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