pytrendy 1.2.0.dev6__tar.gz → 1.3.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {pytrendy-1.2.0.dev6 → pytrendy-1.3.0}/PKG-INFO +2 -2
- {pytrendy-1.2.0.dev6 → pytrendy-1.3.0}/README.md +1 -1
- {pytrendy-1.2.0.dev6 → pytrendy-1.3.0}/pyproject.toml +1 -1
- {pytrendy-1.2.0.dev6 → pytrendy-1.3.0}/LICENSE +0 -0
- {pytrendy-1.2.0.dev6 → pytrendy-1.3.0}/pytrendy/__init__.py +0 -0
- {pytrendy-1.2.0.dev6 → pytrendy-1.3.0}/pytrendy/detect_trends.py +0 -0
- {pytrendy-1.2.0.dev6 → pytrendy-1.3.0}/pytrendy/io/__init__.py +0 -0
- {pytrendy-1.2.0.dev6 → pytrendy-1.3.0}/pytrendy/io/data/classes_signals.csv +0 -0
- {pytrendy-1.2.0.dev6 → pytrendy-1.3.0}/pytrendy/io/data/series_synthetic.csv +0 -0
- {pytrendy-1.2.0.dev6 → pytrendy-1.3.0}/pytrendy/io/data_loader.py +0 -0
- {pytrendy-1.2.0.dev6 → pytrendy-1.3.0}/pytrendy/io/plot_pytrendy.py +0 -0
- {pytrendy-1.2.0.dev6 → pytrendy-1.3.0}/pytrendy/io/results_pytrendy.py +0 -0
- {pytrendy-1.2.0.dev6 → pytrendy-1.3.0}/pytrendy/post_processing/__init__.py +0 -0
- {pytrendy-1.2.0.dev6 → pytrendy-1.3.0}/pytrendy/post_processing/segments_analyse.py +0 -0
- {pytrendy-1.2.0.dev6 → pytrendy-1.3.0}/pytrendy/post_processing/segments_get.py +0 -0
- {pytrendy-1.2.0.dev6 → pytrendy-1.3.0}/pytrendy/post_processing/segments_refine/__init__.py +0 -0
- {pytrendy-1.2.0.dev6 → pytrendy-1.3.0}/pytrendy/post_processing/segments_refine/abrupt_shaving.py +0 -0
- {pytrendy-1.2.0.dev6 → pytrendy-1.3.0}/pytrendy/post_processing/segments_refine/artifact_cleanup.py +0 -0
- {pytrendy-1.2.0.dev6 → pytrendy-1.3.0}/pytrendy/post_processing/segments_refine/gradual_expand_contract.py +0 -0
- {pytrendy-1.2.0.dev6 → pytrendy-1.3.0}/pytrendy/post_processing/segments_refine/segment_grouping.py +0 -0
- {pytrendy-1.2.0.dev6 → pytrendy-1.3.0}/pytrendy/post_processing/segments_refine/trend_classify.py +0 -0
- {pytrendy-1.2.0.dev6 → pytrendy-1.3.0}/pytrendy/post_processing/segments_refine/update_neighbours.py +0 -0
- {pytrendy-1.2.0.dev6 → pytrendy-1.3.0}/pytrendy/process_signals.py +0 -0
- {pytrendy-1.2.0.dev6 → pytrendy-1.3.0}/pytrendy/simpledtw.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pytrendy
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.3.0
|
|
4
4
|
Summary: Trend Detection in Python. Applicable for real-world industry use cases in time series.
|
|
5
5
|
License: MIT License
|
|
6
6
|
|
|
@@ -151,6 +151,6 @@ results.filter_segments(direction='Up', sort_by='change_rank')[:3]
|
|
|
151
151
|
|
|
152
152
|
For the full per-segment metrics table, use `results.df`.
|
|
153
153
|
|
|
154
|
-
For more examples on interpreting the results, see [Gradual
|
|
154
|
+
For more examples on interpreting the results, see [Detect Gradual Trends](https://russellsb.github.io/pytrendy/main/examples/fundamentals/gradual/).
|
|
155
155
|
|
|
156
156
|
|
|
@@ -88,5 +88,5 @@ results.filter_segments(direction='Up', sort_by='change_rank')[:3]
|
|
|
88
88
|
|
|
89
89
|
For the full per-segment metrics table, use `results.df`.
|
|
90
90
|
|
|
91
|
-
For more examples on interpreting the results, see [Gradual
|
|
91
|
+
For more examples on interpreting the results, see [Detect Gradual Trends](https://russellsb.github.io/pytrendy/main/examples/fundamentals/gradual/).
|
|
92
92
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "pytrendy"
|
|
3
|
-
version = "1.
|
|
3
|
+
version = "1.3.0"
|
|
4
4
|
description = "Trend Detection in Python. Applicable for real-world industry use cases in time series."
|
|
5
5
|
authors = [
|
|
6
6
|
{ name = "Russell Sammut Bonnici", email = "r.sammutbonnici@gmail.com" },
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{pytrendy-1.2.0.dev6 → pytrendy-1.3.0}/pytrendy/post_processing/segments_refine/abrupt_shaving.py
RENAMED
|
File without changes
|
{pytrendy-1.2.0.dev6 → pytrendy-1.3.0}/pytrendy/post_processing/segments_refine/artifact_cleanup.py
RENAMED
|
File without changes
|
|
File without changes
|
{pytrendy-1.2.0.dev6 → pytrendy-1.3.0}/pytrendy/post_processing/segments_refine/segment_grouping.py
RENAMED
|
File without changes
|
{pytrendy-1.2.0.dev6 → pytrendy-1.3.0}/pytrendy/post_processing/segments_refine/trend_classify.py
RENAMED
|
File without changes
|
{pytrendy-1.2.0.dev6 → pytrendy-1.3.0}/pytrendy/post_processing/segments_refine/update_neighbours.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|