tw.endpoints.forecast.results
tw.endpoints.forecast.results(id=str)
Retrieve forecast results for a finished prediction job.
GET ``/forecast/{id}/results``
Parameters
id: str
Job identifier
Returns
pandas.DataFrame
Forecast results including timestamps, target values, forecast values, and prediction-type indicators.
Example Usage
CODE
forecast_results_response = tw.endpoints.forecast.results(
id = forecast_predict_id
)