k-shape/README.md

271 B

k-Shape

Python implementation of k-Shape

Usage

from kshape import kshape
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
clusters = kshape(zscore(time_series), cluster_num)