From 4a50bff83c408aff3224d4746c08c87cab3f7c19 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Tue, 31 May 2016 11:11:55 +0000 Subject: [PATCH] cite paper --- README.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 46abaac..9d9ef08 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,8 @@ # k-Shape Python implementation of [k-Shape](http://www.cs.columbia.edu/~jopa/kshape.html), -a new fast and accurate unsupervised Time Series cluster algorithm +a new fast and accurate unsupervised Time Series cluster algorithm. +[See also](#relevant-articles) ## Usage @@ -48,3 +49,12 @@ for f in df.columns: if not df[f].isnull().any() and df[f].var() != 0: time_series.append[df[f]] ``` + +## Relevant Articles + +``` +Paparrizos J and Gravano L (2015). +k-Shape: Efficient and Accurate Clustering of Time Series. +In Proceedings of the 2015 ACM SIGMOD International Conference on Management of Data, series SIGMOD '15, +pp. 1855-1870. ISBN 978-1-4503-2758-9, http://doi.org/10.1145/2723372.2737793. ' +```