Skip to main content

Trend Detection in Python. Applicable for real-world industry use cases in time series.

Project description

PyTrendy

PyTrendy is a robust solution for identifying and analyzing trends in time series. Unlike other trend detection packages, it considers post-processing, and handles both for gradual & abrupt trend cases with a high precision. It aims to be the best package for trend detection in python.

alt-text

Quickstart

Install the package from PyPi.

pip install pytrendy

Import pytrendy.

import pytrendy as pt

Load daily time series data. In this case, we're using one of pytrendy's custom examples.

df = pt.load_data('series_synthetic')
display(df)
<style scoped> .dataframe tbody tr th:only-of-type { vertical-align: middle; }
.dataframe tbody tr th {
    vertical-align: top;
}

.dataframe thead th {
    text-align: right;
}
</style>
date abrupt gradual gradual-noisy-20
0 2025-01-01 19.578066 12.500000 27.514106
1 2025-01-02 19.358378 13.421717 -6.620099
2 2025-01-03 19.228408 13.474026 22.122134
3 2025-01-04 19.727130 13.474026 13.863735
4 2025-01-05 20.773716 14.505772 8.884535
... ... ... ... ...
176 2025-06-26 4.718725 20.616883 19.790026
177 2025-06-27 4.242065 20.978084 19.181404
178 2025-06-28 6.012296 22.449495 -6.563936
179 2025-06-29 4.603068 23.486652 48.291088
180 2025-06-30 4.435105 22.240260 3.343233

181 rows × 4 columns


Run trend detection & plot the results.

results = pt.detect_trends(df, date_col='date', value_col='gradual', plot=True)

alt-text

The results object can be used to summarise, further analyse, and generally inspect the trend detections.

results.print_summary()
Detected: 
- 3 Uptrends. 
- 3 Downtrends.
- 3 Flats.
- 0 Noise.

The best detected trend is Down between dates 2025-05-09 - 2025-06-17

Full Results:
-------------------------------------------------------------------------------
            direction       start         end  days  total_change  change_rank
time_index                                                                   
9               Down  2025-05-09  2025-06-17    39    -73.253968            1
8                 Up  2025-04-02  2025-05-08    36     72.611833            2
5                 Up  2025-02-10  2025-03-14    32     24.632035            3
7               Down  2025-03-18  2025-04-01    14    -22.721861            4
1                 Up  2025-01-02  2025-01-24    22     14.013348            5
3               Down  2025-01-25  2025-02-05    11    -13.564214            6
4               Flat  2025-02-06  2025-02-09     3           NaN            7
6               Flat  2025-03-15  2025-03-17     2           NaN            8
10              Flat  2025-06-18  2025-06-29    11           NaN            9 
-------------------------------------------------------------------------------

You can directly call the object as a pandas dataframe.

results.segments_df
<style scoped> .dataframe tbody tr th:only-of-type { vertical-align: middle; }
.dataframe tbody tr th {
    vertical-align: top;
}

.dataframe thead th {
    text-align: right;
}
</style>
direction segmenth_length start end trend_class change pct_change days total_change SNR change_rank
time_index
9 Down 38 2025-05-09 2025-06-17 gradual -73.253968 -0.805442 39 -73.253968 21.122099 1
8 Up 34 2025-04-02 2025-05-08 gradual 73.687771 3.944243 36 72.611833 21.701162 2
5 Up 22 2025-02-10 2025-03-14 gradual 26.015512 1.974942 32 24.632035 18.871430 3
7 Down 14 2025-03-18 2025-04-01 gradual -22.721861 -0.591909 14 -22.721861 16.762790 4
1 Up 17 2025-01-02 2025-01-24 gradual 14.013348 1.044080 22 14.013348 22.207980 5
3 Down 10 2025-01-25 2025-02-05 gradual -13.564214 -0.554982 11 -13.564214 17.360657 6
4 Flat 9 2025-02-06 2025-02-09 NaN NaN NaN 3 NaN 20.126008 7
6 Flat 4 2025-03-15 2025-03-17 NaN NaN NaN 2 NaN 17.350339 8
10 Flat 13 2025-06-18 2025-06-29 NaN NaN NaN 11 NaN 19.039273 9

By default, trends are sorted by there change_rank. This is ranks higher duration and magnitude of change to describe a trend's gravity erlative to others. You can sort by time index instead with filter_segments. ``` results.filter_segments(sort_by='time_index') ```
<style scoped> .dataframe tbody tr th:only-of-type { vertical-align: middle; }
.dataframe tbody tr th {
    vertical-align: top;
}

.dataframe thead th {
    text-align: right;
}
</style>
direction segmenth_length start end trend_class change pct_change days total_change SNR change_rank
time_index
1 Up 17 2025-01-02 2025-01-24 gradual 14.013348 1.044080 22 14.013348 22.207980 5
3 Down 10 2025-01-25 2025-02-05 gradual -13.564214 -0.554982 11 -13.564214 17.360657 6
4 Flat 9 2025-02-06 2025-02-09 NaN NaN NaN 3 NaN 20.126008 7
5 Up 22 2025-02-10 2025-03-14 gradual 26.015512 1.974942 32 24.632035 18.871430 3
6 Flat 4 2025-03-15 2025-03-17 NaN NaN NaN 2 NaN 17.350339 8
7 Down 14 2025-03-18 2025-04-01 gradual -22.721861 -0.591909 14 -22.721861 16.762790 4
8 Up 34 2025-04-02 2025-05-08 gradual 73.687771 3.944243 36 72.611833 21.701162 2
9 Down 38 2025-05-09 2025-06-17 gradual -73.253968 -0.805442 39 -73.253968 21.122099 1
10 Flat 13 2025-06-18 2025-06-29 NaN NaN NaN 11 NaN 19.039273 9

As well as filter only for a specific direction.

results.filter_segments(direction='Up')
<style scoped> .dataframe tbody tr th:only-of-type { vertical-align: middle; }
.dataframe tbody tr th {
    vertical-align: top;
}

.dataframe thead th {
    text-align: right;
}
</style>
direction segmenth_length start end trend_class change pct_change days total_change SNR change_rank
time_index
8 Up 34 2025-04-02 2025-05-08 gradual 73.687771 3.944243 36 72.611833 21.701162 2
5 Up 22 2025-02-10 2025-03-14 gradual 26.015512 1.974942 32 24.632035 18.871430 3
1 Up 17 2025-01-02 2025-01-24 gradual 14.013348 1.044080 22 14.013348 22.207980 5

Upcoming

  • More DEMO examples.
  • Automated testing in CI/CD pipeline.
  • Documentation, moving more verbose tutorials to there.

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

pytrendy-1.0.2.tar.gz (18.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pytrendy-1.0.2-py3-none-any.whl (19.9 kB view details)

Uploaded Python 3

File details

Details for the file pytrendy-1.0.2.tar.gz.

File metadata

  • Download URL: pytrendy-1.0.2.tar.gz
  • Upload date:
  • Size: 18.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pytrendy-1.0.2.tar.gz
Algorithm Hash digest
SHA256 62438670df30a146ce1ca505d3d8384cc2c43849f88052b0aaa316a2aa27d574
MD5 1c4f6b5479cc5ff711a7c55aa86e4f1c
BLAKE2b-256 2e31adb5d0706850b397704798035f97ceeba1eb7560a3456832899a573f41cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytrendy-1.0.2.tar.gz:

Publisher: release.yaml on RussellSB/pytrendy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pytrendy-1.0.2-py3-none-any.whl.

File metadata

  • Download URL: pytrendy-1.0.2-py3-none-any.whl
  • Upload date:
  • Size: 19.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pytrendy-1.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 95897b5523a7e99a207e187c55ec038166c4d40f094b6c88ecfc43d790bfd750
MD5 70a9ec97be8a3d2139c57aeca9f4e9b3
BLAKE2b-256 c546ae28320b546cdbc4418e056e9c35911da08ff229449fcc59ba9b050c1bc6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytrendy-1.0.2-py3-none-any.whl:

Publisher: release.yaml on RussellSB/pytrendy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page