Skip to content

Commit 27db188

Browse files
author
andre_ramos
committed
try fix image path
1 parent 0eedc00 commit 27db188

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/src/examples.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ fit!(model; penalize_initial_states=false)
5151
simulation = StateSpaceLearning.simulate(model, steps_ahead, 100) #Gets a 12 steps ahead prediction
5252
plot_scenarios(y, simulation)
5353
```
54-
![solar_sim_raw](assets/solar_sim_raw.PNG)
54+
![solar_sim_raw](assets/solar_sim_raw.png)
5555

5656
Now we present the results by setting the ``seasonal\_innovation\_simulation`` hyperparameter to 24 (given that it is a solar hourly time series).
5757

@@ -68,7 +68,7 @@ fit!(model; penalize_initial_states=false)
6868
simulation = StateSpaceLearning.simulate(model, steps_ahead, 100; seasonal_innovation_simulation=24) #Gets a 12 steps ahead prediction
6969
plot_scenarios(y, simulation)
7070
```
71-
![solar_sim_treated](assets/solar_sim_treated.PNG)
71+
![solar_sim_treated](assets/solar_sim_treated.png)
7272

7373
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.
7474

@@ -92,7 +92,7 @@ prediction = StateSpaceLearning.forecast(model, steps_ahead) # arguments are the
9292

9393
plot_point_forecast(y, prediction)
9494
```
95-
![one_seas](assets/one_seas.PNG)
95+
![one_seas](assets/one_seas.png)
9696

9797

9898
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
112112

113113
plot_point_forecast(y, prediction)
114114
```
115-
![two_seas](assets/two_seas.PNG)
115+
![two_seas](assets/two_seas.png)
116116

117117
Note that the model was able to capture both seasonalities in this case.

0 commit comments

Comments
 (0)