Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
SaQC
Manage
Activity
Members
Labels
Plan
Issues
36
Issue boards
Milestones
Wiki
Code
Merge requests
8
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
rdm-software
SaQC
Commits
c04eca58
Commit
c04eca58
authored
4 years ago
by
Peter Lünenschloß
Browse files
Options
Downloads
Patches
Plain Diff
tiny refactoring of interpolateNANs method
parent
2c425f29
No related branches found
Branches containing commit
No related tags found
Tags containing commit
4 merge requests
!193
Release 1.4
,
!188
Release 1.4
,
!49
Dataprocessing features
,
!44
Dataprocessing features
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
saqc/funcs/harm_functions.py
+1
-1
1 addition, 1 deletion
saqc/funcs/harm_functions.py
saqc/lib/ts_operators.py
+14
-12
14 additions, 12 deletions
saqc/lib/ts_operators.py
with
15 additions
and
13 deletions
saqc/funcs/harm_functions.py
+
1
−
1
View file @
c04eca58
...
@@ -364,7 +364,7 @@ def _interpolateGrid(
...
@@ -364,7 +364,7 @@ def _interpolateGrid(
data
=
_insertGrid
(
data
,
freq
)
data
=
_insertGrid
(
data
,
freq
)
data
,
chunk_bounds
=
interpolateNANs
(
data
,
chunk_bounds
=
interpolateNANs
(
data
,
method
,
order
=
order
,
inter_limit
=
2
,
down
cast
_interpolation
=
downcast_interpolation
,
data
,
method
,
order
=
order
,
inter_limit
=
2
,
down
grade
_interpolation
=
downcast_interpolation
,
return_chunk_bounds
=
True
return_chunk_bounds
=
True
)
)
...
...
This diff is collapsed.
Click to expand it.
saqc/lib/ts_operators.py
+
14
−
12
View file @
c04eca58
...
@@ -165,29 +165,31 @@ def meanQC(data, max_nan_total=np.inf, max_nan_consec=np.inf):
...
@@ -165,29 +165,31 @@ def meanQC(data, max_nan_total=np.inf, max_nan_consec=np.inf):
return
np
.
nan
return
np
.
nan
def
interpolateNANs
(
data
,
method
,
order
=
2
,
inter_limit
=
2
,
down
cast
_interpolation
=
False
,
return_chunk_bounds
=
False
):
def
interpolateNANs
(
data
,
method
,
order
=
2
,
inter_limit
=
2
,
down
grade
_interpolation
=
False
,
return_chunk_bounds
=
False
):
"""
"""
The function interpolates nan-values (and nan-grids) in timeseries data. It can be passed all the method keywords
The function interpolates nan-values (and nan-grids) in timeseries data. It can be passed all the method keywords
from the pd.Series.interpolate method and will than apply this very methods. Note, that the inter_limit keyword
from the pd.Series.interpolate method and will than apply this very methods. Note, that the inter_limit keyword
really restricts the interpolation to chunks, not containing more than
"
inter_limit
"
nan entries
really restricts the interpolation to chunks, not containing more than
"
inter_limit
"
nan entries
(thereby
opposing
the limit keyword of pd.Series.interpolate).
(thereby
not being identical to
the
"
limit
"
keyword of pd.Series.interpolate).
:param data: pd.Series. The data series to be interpolated
:param data: pd.Series
or np.array
. The data series to be interpolated
:param method: String. Method keyword designating interpolation method to use.
:param method: String. Method keyword designating interpolation method to use.
:param order: Integer. If your desired interpolation method needs an order to be passed -
:param order: Integer. If your desired interpolation method needs an order to be passed -
here you pass it.
here you pass it.
:param inter_limit: Integer. Default = 2. Limit up to whitch nan - gaps in the data get interpolated.
:param inter_limit: Integer. Default = 2. Limit up to which consecutive nan - values in the data get
Its default value suits an interpolation that only will apply on an inserted
replaced by interpolation.
frequency grid. (regularization by interpolation)
Its default value suits an interpolation that only will apply to points of an
:param downcast_interpolation: Boolean. Default False. If True:
inserted frequency grid. (regularization by interpolation)
Gaps wider than
"
inter_limit
"
will NOT be interpolated at all.
:param downgrade_interpolation: Boolean. Default False. If True:
If a data chunk not contains enough values for interpolation of the order
"
order
"
,
If a data chunk not contains enough values for interpolation of the order
"
order
"
,
the highest order possible will be selected for that chunks interpolation.
"
the highest order possible will be selected for that chunks interpolation.
:param return_chunk_bounds: Boolean. Default False. If True:
:param return_chunk_bounds: Boolean. Default False. If True:
Additionally to the interpolated data, the start and ending points of data chunks
Additionally to the interpolated data, the start and ending points of data chunks
not containing no series consisting of more then
"
inter_limit
"
nan values,
not containing no series consisting of more then
"
inter_limit
"
nan values,
are calculated and returned.
are calculated and returned.
(This option fits requirements of the
"
_
interpolate
"
functions use in the
context of
(This option fits requirements of the
"
interpolate
NANs
"
functions use in the
saqc harmonization mainly.)
context of
saqc harmonization mainly.)
:return:
:return:
"""
"""
...
@@ -227,7 +229,7 @@ def interpolateNANs(data, method, order=2, inter_limit=2, downcast_interpolation
...
@@ -227,7 +229,7 @@ def interpolateNANs(data, method, order=2, inter_limit=2, downcast_interpolation
except
(
NotImplementedError
,
ValueError
):
except
(
NotImplementedError
,
ValueError
):
logger
.
warning
(
logger
.
warning
(
"
Interpolation with method {} is not supported at order {}.
"
"
Interpolation with method {} is not supported at order {}.
"
"
Interpolation will be performed
with
order {}
"
.
format
(
"
Interpolation will be performed
at
order {}
"
.
format
(
method
,
str
(
wrap_order
),
str
(
wrap_order
-
1
)
method
,
str
(
wrap_order
),
str
(
wrap_order
-
1
)
)
)
)
)
...
@@ -235,7 +237,7 @@ def interpolateNANs(data, method, order=2, inter_limit=2, downcast_interpolation
...
@@ -235,7 +237,7 @@ def interpolateNANs(data, method, order=2, inter_limit=2, downcast_interpolation
elif
x
.
size
<
3
:
elif
x
.
size
<
3
:
return
x
return
x
else
:
else
:
if
down
cast
_interpolation
:
if
down
grade
_interpolation
:
return
_interpolWrapper
(
x
,
int
(
x
.
count
()
-
1
),
wrap_method
)
return
_interpolWrapper
(
x
,
int
(
x
.
count
()
-
1
),
wrap_method
)
else
:
else
:
return
x
return
x
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment