Merge pull request #2 from sitic/master

Fix example code syntax error
This commit is contained in:
Rajat Sen
2024-05-09 08:51:15 +02:00
committed by GitHub
+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)),
]