Visualizing forecast performance
In this exercise, you'll evaluate and visualize the performance of the forecast model you built in the previous exercise.
The test
dataset, ml_forecast
results, and plot_series
are preloaded, along with evaluation functions (mape
, rmse
, coverage
) and pandas
as pd
.
Let's first assess the model's performance and then visualize the forecast.
Diese Übung ist Teil des Kurses
Designing Forecasting Pipelines for Production
Anleitung zur Übung
- Use the
plot_series()
function to plot thetest
dataset and theml_forecast
.
Interaktive Übung
Vervollständige den Beispielcode, um diese Übung erfolgreich abzuschließen.
# Plot the forecast results
fig = plot_series(____, ____, level=[95], engine="plotly").update_layout(height=400)
fig.show()