statsmodels.emplike.aft_el.emplikeAFT.predict#

emplikeAFT.predict(params, endog=None)[source]#

Return the linear predictor, params multiplied by endog

Parameters:
paramsndarray

Regression coefficients used to form the prediction.

endogndarray, optional

Values of the response variable at which to form the prediction. If None, the model’s endog is used. Default is None.

Returns:
ndarray

The predicted values, endog dot params.