statsmodels.base.distributed_estimation.DistributedResults.predict

method

DistributedResults.predict(exog, *args, **kwargs)[source]

Calls self.model.predict for the provided exog. See Results.predict.

Parameters
exogarray-like NOT optional

The values for which we want to predict, unlike standard predict this is NOT optional since the data in self.model is fake.

args, kwargs :

Some models can take additional arguments or keywords, see the predict method of the model for the details.

Returns
predictionndarray, pandas.Series or pandas.DataFrame

See self.model.predict