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
f9d01122
Commit
f9d01122
authored
4 years ago
by
Bert Palm
🎇
Browse files
Options
Downloads
Patches
Plain Diff
fixed History append
parent
09fa1f71
No related branches found
No related tags found
3 merge requests
!271
Static expansion of regular expressions
,
!260
Follow-Up Translations
,
!237
Flagger Translations
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
saqc/flagger/flags.py
+24
-36
24 additions, 36 deletions
saqc/flagger/flags.py
saqc/flagger/history.py
+42
-0
42 additions, 0 deletions
saqc/flagger/history.py
saqc/funcs/resampling.py
+4
-3
4 additions, 3 deletions
saqc/funcs/resampling.py
with
70 additions
and
39 deletions
saqc/flagger/flags.py
+
24
−
36
View file @
f9d01122
...
...
@@ -356,18 +356,33 @@ def applyFunctionOnHistory(
Parameters
----------
flags :
column :
hist_func :
hist_kws :
mask_func :
mask_kws :
last_column :
func_handle_df :
flags : Flags
Flags object holding the History in question
column : str
name of the column holding the history in question
hist_func : callable
function to apply on `History.hist` (flags)
hist_kws : dict
hist-function keywords dict
mask_func : callable
function to apply on `History.mask` (force mask)
mask_kws : dict
mask-function keywords dict
last_column : pd.Series or None, default None
The last column to apply. If None, no extra column is appended.
func_handle_df : bool
If `True`, the whole History{.hist, .mask} are passed to the given functions, thus the
function must handle `pd.Dataframes` as first input. If `False`, each column is passed
separately, thus the functions must handle those.
Notes
-----
After the functions are called, all `NaN`
'
s in `History.mask` are replaced with `False`,
and the `.mask` is casted to bool, to ensure a consistent History.
Returns
-------
Copy of Flags with altered History (in column)
"""
flags
=
flags
.
copy
()
history
=
flags
.
history
[
column
]
...
...
@@ -398,32 +413,5 @@ def applyFunctionOnHistory(
return
flags
def
appendHistory
(
flags
:
Flags
,
column
,
append_hist
):
"""
Function, specialized for used in deharm context.
Parameters
----------
flags
field
source
merge_func
merge_func_kws
last_column
Returns
-------
"""
flags
=
flags
.
copy
()
new_history
=
flags
.
history
[
column
]
for
app_k
in
[
k
for
k
in
append_hist
.
columns
if
k
not
in
new_history
.
columns
]:
new_history
.
hist
[
app_k
]
=
append_hist
.
hist
[
app_k
]
new_history
.
mask
[
app_k
]
=
append_hist
.
mask
[
app_k
]
flags
.
history
[
column
]
=
new_history
return
flags
# for now we keep this name
Flagger
=
Flags
This diff is collapsed.
Click to expand it.
saqc/flagger/history.py
+
42
−
0
View file @
f9d01122
...
...
@@ -393,3 +393,45 @@ class History:
raise
ValueError
(
'
dtype must be float
'
)
return
obj
def
appendNewerHistory
(
original
:
History
,
newer
:
History
)
->
History
:
"""
Append all newer columns of a history to an other History.
The first N columns in the newer History are discarded, where N is the
number of columns in the original history.
The Histories must have same indexes, otherwise a `ValueError` is raised.
Parameters
----------
original : History
The original History
newer : History
The newer History
Raises
------
ValueError : if indexes of histories does not match.
Returns
-------
History with appended columns
"""
original
=
original
.
copy
()
if
not
original
.
index
.
equals
(
newer
.
index
):
raise
ValueError
(
"
Index of histories does not match
"
)
n
=
len
(
original
.
columns
)
append_hist
=
newer
.
hist
.
iloc
[:,
n
:]
append_mask
=
newer
.
mask
.
iloc
[:,
n
:]
original
.
hist
.
loc
[:,
append_hist
.
columns
]
=
append_hist
original
.
mask
.
loc
[:,
append_mask
.
columns
]
=
append_mask
assert
original
.
columns
.
equals
(
pd
.
Index
(
range
(
len
(
original
.
columns
))))
return
original
This diff is collapsed.
Click to expand it.
saqc/funcs/resampling.py
+
4
−
3
View file @
f9d01122
...
...
@@ -13,12 +13,12 @@ from dios import DictOfSeries
from
saqc.constants
import
*
from
saqc.core.register
import
register
,
isflagged
from
saqc.flagger
import
Flagger
,
initFlagsLike
,
History
from
saqc.flagger.history
import
appendNewerHistory
from
saqc.flagger.flags
import
Flagger
,
applyFunctionOnHistory
from
saqc.funcs.tools
import
copy
,
drop
,
rename
from
saqc.funcs.interpolation
import
interpolateIndex
,
_SUPPORTED_METHODS
from
saqc.lib.tools
import
evalFreqStr
,
getFreqDelta
from
saqc.lib.ts_operators
import
shift2Freq
,
aggregate2Freq
from
saqc.flagger.flags
import
applyFunctionOnHistory
,
appendHistory
from
saqc.lib.rolling
import
customRoller
logger
=
logging
.
getLogger
(
"
SaQC
"
)
...
...
@@ -713,5 +713,6 @@ def reindexFlags(
raise
ValueError
(
f
"
unknown method
{
method
}
"
)
tmp_flagger
=
applyFunctionOnHistory
(
flagger
,
source
,
func
,
func_kws
,
func
,
mask_kws
,
last_column
=
dummy
)
flagger
=
appendHistory
(
flagger
,
field
,
tmp_flagger
.
history
[
source
])
new_hist
=
appendNewerHistory
(
flagger
.
history
[
field
],
tmp_flagger
.
history
[
source
])
flagger
.
history
[
field
]
=
new_hist
return
data
,
flagger
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