also remove superflous numpy from example

This commit is contained in:
Jörg Thalheim 2016-05-18 13:03:17 +00:00
parent 3cba855163
commit aa677fe5b6
2 changed files with 0 additions and 2 deletions

View File

@ -6,7 +6,6 @@ Python implementation of k-Shape
```
from kshape import kshape, zscore
import numpy as np
time_series = [[1,2,3,4], [0,1,2,3], [-1,1,-1,1], [1,2,2,3]]
cluster_num = 2

View File

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