update example (without scipy)

This commit is contained in:
Jörg Thalheim 2016-05-18 13:00:50 +00:00
parent d3d3cdfa96
commit 3cba855163
2 changed files with 2 additions and 4 deletions

View File

@ -5,9 +5,8 @@ Python implementation of k-Shape
### Usage
```
from kshape import kshape
from kshape import kshape, zscore
import numpy as np
from scipy.stats import zscore
time_series = [[1,2,3,4], [0,1,2,3], [-1,1,-1,1], [1,2,2,3]]
cluster_num = 2

View File

@ -1,6 +1,5 @@
from kshape import kshape
from kshape import kshape, zscore
import numpy as np
from scipy.stats import zscore
time_series = [[1,2,3,4], [0,1,2,3], [-1,1,-1,1], [1,2,2,3]]
cluster_num = 2