Fix example code syntax error

This commit is contained in:
Jan Lebert
2024-05-08 15:03:04 -07:00
committed by GitHub
parent 81dc60c086
commit e012ec3f05
+1 -1
View File
@@ -112,7 +112,7 @@ Array inputs, with the frequencies set to low, medium and high respectively.
```python
import numpy as np
forecast_input = [
np.sin(np.linspace(0, 20, 100))
np.sin(np.linspace(0, 20, 100)),
np.sin(np.linspace(0, 20, 200)),
np.sin(np.linspace(0, 20, 400)),
]