statsmodels.tsa.statespace.news.NewsResults.summary_news

NewsResults.summary_news(sparsify=True)[source]

Create summary table showing news from new data since previous results

Parameters:
sparsifybool, optional, default True

Set to False for the table to include every one of the multiindex keys at each row.

Returns:
updates_tableSimpleTable

Table showing new datapoints that were not in the previous results’ data. Columns are:

  • update date : date associated with a new data point.

  • updated variable : variable for which new data was added at update date.

  • forecast (prev) : the forecast value for the updated variable at the update date in the previous results object (i.e. prior to the data being available).

  • observed : the observed value of the new datapoint.

See also

data_updates

Last update: Apr 19, 2024