You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thus, the model has demonstrated its capability to effectively capture the intermittent nature of the solar time series, providing a more accurate representation of its underlying characteristics.
74
74
@@ -92,7 +92,7 @@ prediction = StateSpaceLearning.forecast(model, steps_ahead) # arguments are the
92
92
93
93
plot_point_forecast(y, prediction)
94
94
```
95
-

95
+

96
96
97
97
98
98
Note that the model successfully captured the daily seasonality but, as expected, was unable to capture the weekly seasonality. We now present the results after setting the `freq\_seasonal` hyperparameter to [24, 168], accounting for both daily and weekly seasonalities.
@@ -112,6 +112,6 @@ prediction = StateSpaceLearning.forecast(model, steps_ahead) # arguments are the
112
112
113
113
plot_point_forecast(y, prediction)
114
114
```
115
-

115
+

116
116
117
117
Note that the model was able to capture both seasonalities in this case.
0 commit comments