From 0d3873d73d0400084ba5b851e580d23035586cb0 Mon Sep 17 00:00:00 2001 From: Volkan Kumtepeli Date: Sat, 7 Sep 2024 21:24:33 +0100 Subject: [PATCH] html test in readme. --- README.md | 31 ++++++++++++++++++++++++++++++- 1 file changed, 30 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 167b70d..efc170b 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,9 @@ DTW-C++ =========================== [![DOI](https://joss.theoj.org/papers/10.21105/joss.06881/status.svg)](https://doi.org/10.21105/joss.06881) [![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.13551469.svg)](https://doi.org/10.5281/zenodo.13551469) +[![Website](https://img.shields.io/website?url=https%3A%2F%2FBattery-Intelligence-Lab.github.io%2Fdtw-cpp%2F)](https://Battery-Intelligence-Lab.github.io/dtw-cpp/) + + [![Ubuntu unit](https://github.com/Battery-Intelligence-Lab/dtw-cpp/workflows/Ubuntu%20unit/badge.svg)](https://github.com/Battery-Intelligence-Lab/dtw-cpp/actions) [![macOS unit](https://github.com/Battery-Intelligence-Lab/dtw-cpp/workflows/macOS%20unit/badge.svg)](https://github.com/Battery-Intelligence-Lab/dtw-cpp/actions) @@ -22,9 +25,35 @@ There is separate [detailed documentation](https://Battery-Intelligence-Lab.gith Introduction =========================== -DTW-C++ is a dynamic time warping (DTW) and clustering library for time series data, written in C++. Users can input multiple time series and find clusters of similar time series. Time series may be the same lengths, or different lengths. The number of clusters to find may be fixed, or a range of numbers to try may be specified. DTW-C++ finds clusters in time series data using k-medoids or mixed integer programming (MIP); k-medoids is generally faster, but may get stuck in local optima; MIP can find globally optimal clusters. +DTW-C++ is a C++ library for dynamic time warping (DTW) and clustering of time series data. Users can input multiple time series and find clusters of similar time series. The time series can have the same or different lengths. The number of clusters to find can be fixed or specified as a range to try. DTW-C++ finds clusters in time series data using k-medoids or mixed integer programming (MIP). K-medoids is generally faster but may get stuck in local optima, while MIP can give guarantees about globally optimal clusters.

DTW

+Citation +=========================== + +APA style: +``` +Kumtepeli, V., Perriment, R., & Howey, D. A. (2024). DTW-C++: Fast dynamic time warping and clustering of time series data. Journal of Open Source Software, 9(101), 6881. https://doi.org/10.21105/joss.06881 +``` + +BibTeX: +``` +@article{Kumtepeli2024, +author = {Kumtepeli, Volkan and Perriment, Rebecca and Howey, David A.}, +doi = {10.21105/joss.06881}, +journal = {Journal of Open Source Software}, +month = sep, +number = {101}, +pages = {6881}, +title = {{DTW-C++: Fast dynamic time warping and clustering of time series data}}, +url = {https://joss.theoj.org/papers/10.21105/joss.06881}, +volume = {9}, +year = {2024} +} +``` + + + Contributors ===========================