statsmodels.emplike.aft_el.emplikeAFT.predict#

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

Return the linear predictor, params multiplied by exog

Parameters:
paramsndarray

Regression coefficients used to form the prediction.

exogndarray, optional

Values of the explanatory variables at which to form the prediction. If None, the model’s exog is used. Default is None.

Returns:
ndarray

The predicted values, exog dot params.