A package for trend line clustering.
Project description
TrendyPy
TrendyPy is a small Python package for sequence clustering. It is initially developed to create time series clusters by calculating trend similarity distance with Dynamic Time Warping.
Installation
You can install TrendyPy with pip.
pip install trendypy
TrendyPy depends on Pandas, Numpy and fastdtw and works in Python 3.7+.
Quickstart
Trendy has scikit-learn like api to allow easy integration to existing programs. Below is a quick example to show how it clusters increasing and decreasing trends.
>>> from trendypy.trendy import Trendy
>>> a = [1, 2, 3, 4, 5] # increasing trend
>>> b = [1, 2.1, 2.9, 4.4, 5.1] # increasing trend
>>> c = [6.2, 5, 4, 3, 2] # decreasing trend
>>> d = [7, 6, 5, 4, 3, 2, 1] # decreasing trend
>>> trendy = Trendy(n_clusters=2)
>>> trendy.fit([a, b, c, d])
>>> print(trendy.labels_)
[0, 0, 1, 1]
>>> trendy.predict([[0.9, 2, 3.1, 4]]) # another increasing trend
[0]
It can also be utilized to cluster strings by using string similarity metrics.
>>> from trendypy.trendy import Trendy
>>> from trendypy.algos import levenshtein_distance
>>> company_names = [
... 'apple inc',
... 'Apple Inc.',
... 'Microsoft Corporation',
... 'Microsft Corp.']
>>> trendy = Trendy(n_clusters=2, algorithm=levenshtein_distance)
>>> trendy.fit(company_names)
>>> print(trendy.labels_)
[0, 0, 1, 1]
>>> trendy.predict(['Apple'])
[0]
Refer to extensive demo to see it in clustering stock trends, images or to see how to define your own metric or just check API Reference for details.
Post
The idea is originated from the post Trend Clustering.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file trendypy-0.2.2.tar.gz
.
File metadata
- Download URL: trendypy-0.2.2.tar.gz
- Upload date:
- Size: 7.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 600fce1cab6716cba08c097d67f38c9f28c624ee9417abc290b5d6498f146fca |
|
MD5 | 03287a726aa176677ff34dd2a01dc21f |
|
BLAKE2b-256 | f55d09fad4c1b5603691efce6a489955d3d0066d39b48a16ba849857a3e7371e |
File details
Details for the file trendypy-0.2.2-py3-none-any.whl
.
File metadata
- Download URL: trendypy-0.2.2-py3-none-any.whl
- Upload date:
- Size: 8.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7aee02cc96d92d599aec3bd226958f030312a485e462ac0d0eb5107caf078a70 |
|
MD5 | 8c31bcd998b18910c26317996b0519e3 |
|
BLAKE2b-256 | 961ba1b6493490d4df52663fa1872087351e4e98c783df5214fea2df889fc5c9 |