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.
이 연습은 강의의 일부입니다
Designing Forecasting Pipelines for Production
연습 안내
- Use the
plot_series()function to plot thetestdataset and theml_forecast.
실습형 인터랙티브 연습
이 예제를 이 샘플 코드를 완성하여 풀어보세요.
# Plot the forecast results
fig = plot_series(____, ____, level=[95], engine="plotly").update_layout(height=400)
fig.show()