Skip to main content

Pyriodicity provides an intuitive and efficient Python implementation of periodicity length detection methods in univariate signals.

Project description

Pyriodicity

PyPI Version PyPI - Python Version GitHub License Codecov Docs CI Build

Pyriodicity provides an intuitive and efficient Python implementation of periodicity length detection methods in univariate signals. You can check the supported detection methods in the API Reference.

Installation

To install pyriodicity, simply run:

pip install pyriodicity

To install the latest development version, you can run:

pip install git+https://github.com/iskandergaba/pyriodicity.git

Usage

Please refer to the package documentation for more information.

For this example, start by loading Mauna Loa Weekly Atmospheric CO2 Data from statsmodels and downsampling its data to a monthly frequency.

>>> from statsmodels.datasets import co2
>>> data = co2.load().data
>>> data = data.resample("ME").mean().ffill()

Use Autoperiod to find the list of periodicity lengths in this data, if any.

>>> from pyriodicity import Autoperiod
>>> Autoperiod.detect(data)
array([12])

The detected periodicity length is 12 which suggests a strong yearly seasonality given that the data has a monthly frequency.

We can also use online detection methods for data streams as follows.

>>> from pyriodicity import OnlineACFPeriodicityDetector
>>> data_stream = (sample for sample in data.values)
>>> detector = OnlineACFPeriodicityDetector(window_size=128)
>>> for sample in data_stream:
...   periods = detector.detect(sample)
>>> 12 in periods
True

All the supported periodicity detection methods can be used in the same manner as in the examples above with different optional parameters. Check the API Reference for more details.

References

  1. Hyndman, R.J., & Athanasopoulos, G. (2021). Forecasting: principles and practice, 3rd edition, OTexts: Melbourne, Australia. OTexts.com/fpp3. Accessed on 09-15-2024.
  2. Vlachos, M., Yu, P., & Castelli, V. (2005). On periodicity detection and Structural Periodic similarity. Proceedings of the 2005 SIAM International Conference on Data Mining. doi.org/10.1137/1.9781611972757.40.
  3. Puech, T., Boussard, M., D'Amato, A., & Millerand, G. (2020). A fully automated periodicity detection in time series. In Advanced Analytics and Learning on Temporal Data: 4th ECML PKDD Workshop, AALTD 2019, Würzburg, Germany, September 20, 2019, Revised Selected Papers 4 (pp. 43-54). Springer International Publishing. doi.org/10.1007/978-3-030-39098-3_4.
  4. Toller, M., Santos, T., & Kern, R. (2019). SAZED: parameter-free domain-agnostic season length estimation in time series data. Data Mining and Knowledge Discovery, 33(6), 1775-1798. doi.org/10.1007/s10618-019-00645-z.
  5. Wen, Q., He, K., Sun, L., Zhang, Y., Ke, M., & Xu, H. (2021, June). RobustPeriod: Robust time-frequency mining for multiple periodicity detection. In Proceedings of the 2021 international conference on management of data (pp. 2328-2337). doi.org/10.1145/3448016.3452779.

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

pyriodicity-0.5.3.tar.gz (19.7 kB view details)

Uploaded Source

Built Distribution

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

pyriodicity-0.5.3-py3-none-any.whl (30.0 kB view details)

Uploaded Python 3

File details

Details for the file pyriodicity-0.5.3.tar.gz.

File metadata

  • Download URL: pyriodicity-0.5.3.tar.gz
  • Upload date:
  • Size: 19.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.7.16

File hashes

Hashes for pyriodicity-0.5.3.tar.gz
Algorithm Hash digest
SHA256 e4a3a0fb4e758b689832001e6df98fa8824119e3a3ee4a4b38d76e4f5a6ecf16
MD5 fdedf1336a40ece5801adbb84b92d5dc
BLAKE2b-256 3e6410a6c830a4c2e8ae7e19156a9256ab067345fb09c2e3851cebbe0d5cf13b

See more details on using hashes here.

File details

Details for the file pyriodicity-0.5.3-py3-none-any.whl.

File metadata

File hashes

Hashes for pyriodicity-0.5.3-py3-none-any.whl
Algorithm Hash digest
SHA256 f6bc4aa15f9632c470844c8ab50e44c715d0702f13e4368202eb08e33075f9c5
MD5 a2df31daf626b5adb2ad4d81c3505470
BLAKE2b-256 297b9434511a3071dca8c8e7860a460b8bd3093f646f081b2394f08d7e992c85

See more details on using hashes here.

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