You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+8-8Lines changed: 8 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -1,12 +1,12 @@
1
1
# tsmoothie
2
2
3
-
A python library for timeseries smoothing and outlier detection in a vectorized way.
3
+
A python library for time-series smoothing and outlier detection in a vectorized way.
4
4
5
5
## Overview
6
6
7
-
tsmoothie computes, in a fast and efficient way, the smoothing of single or multiple timeseries.
7
+
tsmoothie computes, in a fast and efficient way, the smoothing of single or multiple time-series.
8
8
9
-
The smoothing tecniques available are:
9
+
The smoothing techniques available are:
10
10
11
11
- Exponential Smoothing
12
12
- Convolutional Smoothing with various window types (constant, hanning, hamming, bartlett, blackman)
@@ -17,7 +17,7 @@ The smoothing tecniques available are:
17
17
- LOWESS
18
18
- Kalman Smoothing with customizable components (level, trend, seasonality, long seasonality)
19
19
20
-
tsmoothie provides the calculation of intervals as result of the smoothing process. This can be useful to identify outliers and anomalies in timeseries.
20
+
tsmoothie provides the calculation of intervals as result of the smoothing process. This can be useful to identify outliers and anomalies in time-series.
21
21
22
22
The interval types available are:
23
23
@@ -28,14 +28,14 @@ The interval types available are:
28
28
29
29
The adoption of this type of intervals depends on the smoothing method used.
30
30
31
-
tsmoothie can also carry out a sliding smoothing approach. This is possible splitting the timeseries into equal sized pieces and smoothing them independently. As always, this functionality is implemented in a vectorized way through the WindowWrapper class.
31
+
tsmoothie can also carry out a sliding smoothing approach. This is possible splitting the time-series into equal sized pieces and smoothing them independently. As always, this functionality is implemented in a vectorized way through the WindowWrapper class.
32
32
33
33
## Media
34
34
35
35
Blog Posts:
36
36
37
-
-Timeseries Smoothing for better clustering (cooming soon)
38
-
-Timeseries Smoothing for better forecasting (cooming soon)
37
+
-[Time Series Smoothing for better Clustering](https://towardsdatascience.com/time-series-smoothing-for-better-clustering-121b98f308e8)
38
+
-Time Series Smoothing for better Forecasting (coming soon)
39
39
40
40
## Installation
41
41
@@ -119,5 +119,5 @@ for i in range(3):
119
119
120
120
## References
121
121
122
-
- Polynomial, Spline, Gaussian and Binner smoothing are carried out building a regression on custom basis expansions. These implementations are based on the amazing intutions of Matthew Drury available [here](https://github.com/madrury/basis-expansions/blob/master/examples/comparison-of-smoothing-methods.ipynb)
122
+
- Polynomial, Spline, Gaussian and Binner smoothing are carried out building a regression on custom basis expansions. These implementations are based on the amazing intuitions of Matthew Drury available [here](https://github.com/madrury/basis-expansions/blob/master/examples/comparison-of-smoothing-methods.ipynb)
123
123
- Time Series Modelling with Unobserved Components, Matteo M. Pelagatti
0 commit comments