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
64f848c8
Commit
64f848c8
authored
4 years ago
by
David Schäfer
Browse files
Options
Downloads
Patches
Plain Diff
make the masking/unmasking considerably faster by moving the
assignments to numpy arrays
parent
01d8f303
No related branches found
Branches containing commit
No related tags found
Tags containing commit
3 merge requests
!193
Release 1.4
,
!188
Release 1.4
,
!82
Perf improvements
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
saqc/core/register.py
+13
-3
13 additions, 3 deletions
saqc/core/register.py
with
13 additions
and
3 deletions
saqc/core/register.py
+
13
−
3
View file @
64f848c8
...
...
@@ -171,13 +171,20 @@ class SaQCFunc(Func):
return
data_result
,
flagger_result
def
_maskData
(
self
,
data
,
flagger
):
# TODO: this is heavily undertested
to_mask
=
flagger
.
BAD
if
self
.
to_mask
is
None
else
self
.
to_mask
mask
=
flagger
.
isFlagged
(
flag
=
to_mask
,
comparator
=
'
==
'
)
data
=
data
.
copy
()
data
[
mask
]
=
np
.
nan
for
c
in
data
.
columns
:
col_mask
=
mask
[
c
].
values
if
np
.
any
(
col_mask
):
col_data
=
data
[
c
].
values
.
astype
(
np
.
float64
)
col_data
[
col_mask
]
=
np
.
nan
data
[
c
]
=
col_data
return
data
def
_unmaskData
(
self
,
data_old
,
flagger_old
,
data_new
,
flagger_new
):
# TODO: this is heavily undertested
to_mask
=
flagger_old
.
BAD
if
self
.
to_mask
is
None
else
self
.
to_mask
mask_old
=
flagger_old
.
isFlagged
(
flag
=
to_mask
,
comparator
=
"
==
"
)
mask_new
=
flagger_new
.
isFlagged
(
flag
=
to_mask
,
comparator
=
"
==
"
)
...
...
@@ -190,8 +197,11 @@ class SaQCFunc(Func):
if
left
.
equals
(
right
):
# NOTE: Don't overwrite data, that was masked, but is not considered
# flagged anymore and also respect newly set data on masked locations.
mask
=
mask_old
[
col
]
&
mask_new
[
col
]
&
data_new
[
col
].
isna
()
data_new
.
loc
[
mask
,
col
]
=
data_old
.
loc
[
mask
,
col
]
mask
=
mask_old
[
col
].
values
&
mask_new
[
col
].
values
&
data_new
[
col
].
isna
().
values
if
np
.
any
(
mask
):
col_data
=
data_new
[
col
].
values
col_data
[
mask
]
=
data_old
[
col
].
values
[
mask
]
data_new
[
col
]
=
col_data
return
data_new
...
...
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