-
Notifications
You must be signed in to change notification settings - Fork 13
Insert make_equidistant to interpolate non-equidistant time series #38
Conversation
Correct typos, whitespace, line wraps and mixed indentation in __init__.py of package misc and misc/tools.py.
Signed-off-by: Bjoern Ludwig <bjoern.ludwig@ptb.de>
Signed-off-by: Bjoern Ludwig <bjoern.ludwig@ptb.de>
Codecov Report
@@ Coverage Diff @@
## master #38 +/- ##
==========================================
+ Coverage 17.04% 18.43% +1.38%
==========================================
Files 16 16
Lines 1267 1291 +24
Branches 206 210 +4
==========================================
+ Hits 216 238 +22
- Misses 1044 1045 +1
- Partials 7 8 +1
Continue to review full report at Codecov.
|
# Conflicts: # PyDynamic/misc/tools.py
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We went through all the new code + tests together with @BjoernLudwigPTB and it looks very good.
The inspection completed: 3 new issues, 12 updated code elements |
The interpolation with methods next, previous, nearest and linear is finished and well tested in the test suite. Cubic spline interpolation and least-squares are on the list, but will be added at a later time, as well as integrating uncertainty of timestamps. |
Resolve #30 by inserting a function
make_equidistant()
intotools
module as proposed and discussed in the according issue.