Skip to content

Commit 3912f4c

Browse files
committed
Add the smoothing utility class
* implements the existing smoothers found in the indicators (window average, gaussian local linear regression) * adds the more general Savitzky-Golay filter as 'savgol' with gaussian weighting * adds imputation options * adds tests to match
1 parent cf6f4c1 commit 3912f4c

File tree

5 files changed

+606
-2
lines changed

5 files changed

+606
-2
lines changed

_delphi_utils_python/delphi_utils/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77
from .archive import ArchiveDiffer, GitArchiveDiffer, S3ArchiveDiffer
88
from .export import create_export_csv
99
from .utils import read_params
10+
1011
from .geomap import GeoMapper
12+
from .smooth import Smoother
1113

1214
__version__ = "0.1.0"

0 commit comments

Comments
 (0)