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
Distributed usage for 1-dimensional time series data with Dask Distributed via `STUMPED <https://stumpy.readthedocs.io/en/latest/api.html#stumpy.stumped>`__:
83
84
@@ -117,10 +118,11 @@ Multi-dimensional time series data with `MSTUMP <https://stumpy.readthedocs.io/e
117
118
import stumpy
118
119
import numpy as np
119
120
120
-
your_time_series = np.random.rand(3, 1000) # Each row represents data from a different dimension while each column represents data from the same dimension
121
-
window_size =50# Approximately, how many data points might be found in a pattern
121
+
if__name__=="__main__":
122
+
your_time_series = np.random.rand(3, 1000) # Each row represents data from a different dimension while each column represents data from the same dimension
123
+
window_size =50# Approximately, how many data points might be found in a pattern
Distributed multi-dimensional time series data analysis with Dask Distributed `MSTUMPED <https://stumpy.readthedocs.io/en/latest/api.html#stumpy.mstumped>`__:
126
128
@@ -145,18 +147,19 @@ Time Series Chains with `Anchored Time Series Chains (ATSC) <https://stumpy.read
145
147
import stumpy
146
148
import numpy as np
147
149
148
-
your_time_series = np.random.rand(10000)
149
-
window_size =50# Approximately, how many data points might be found in a pattern
Copy file name to clipboardExpand all lines: pypi.sh
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@
7
7
# a) Find the minimum Python and NumPy version you want to support: https://numpy.org/neps/nep-0029-deprecation_policy.html#support-table
8
8
# b) Then find the SciPy version that has a "Python" version and "Minimum NumPy version" that is supported: https://docs.scipy.org/doc/scipy/reference/toolchain.html#numpy
9
9
# c) Check Numba release notes for mimumum Python and NumPy versions supported https://numba.pydata.org/numba-doc/dev/release-notes.html
0 commit comments