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
fc8ba246
Commit
fc8ba246
authored
4 years ago
by
Bert Palm
🎇
Browse files
Options
Downloads
Patches
Plain Diff
added feature, to pass an index as mask to flags, because it seems a common workflow
parent
4ec76257
No related branches found
No related tags found
4 merge requests
!271
Static expansion of regular expressions
,
!260
Follow-Up Translations
,
!237
Flagger Translations
,
!232
WIP: Fuzzy testing
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
saqc/flagger/flags.py
+8
-1
8 additions, 1 deletion
saqc/flagger/flags.py
test/flagger/test_flags.py
+28
-0
28 additions, 0 deletions
test/flagger/test_flags.py
with
36 additions
and
1 deletion
saqc/flagger/flags.py
+
8
−
1
View file @
fc8ba246
...
...
@@ -178,8 +178,15 @@ class Flags:
raise
KeyError
(
"
a single
'
column
'
or a tuple of
'
mask, column
'
must be passt
"
)
mask
,
key
=
key
# raises (correct) KeyError
tmp
=
pd
.
Series
(
UNTOUCHED
,
index
=
self
.
_data
[
key
].
index
,
dtype
=
float
)
# make a mask from an index, because it seems
# that passing an index is a very common workflow
if
isinstance
(
mask
,
pd
.
Index
):
mask
=
pd
.
Series
(
True
,
index
=
mask
,
dtype
=
bool
)
mask
=
mask
.
reindex
(
tmp
.
index
,
fill_value
=
False
)
# raises (correct) KeyError
try
:
tmp
[
mask
]
=
value
except
Exception
:
...
...
This diff is collapsed.
Click to expand it.
test/flagger/test_flags.py
+
28
−
0
View file @
fc8ba246
...
...
@@ -188,6 +188,34 @@ def test_set_flags_with_mask(data: np.array):
flags
[
mask
,
c
]
=
vector
@pytest.mark.parametrize
(
'
data
'
,
data
)
def
test_set_flags_with_index
(
data
:
np
.
array
):
flags
=
Flags
(
data
)
for
c
in
flags
.
columns
:
var
=
flags
[
c
]
mask
=
var
==
UNFLAGGED
index
=
mask
[
mask
].
index
scalar
=
222.
flags
[
index
,
c
]
=
scalar
assert
all
(
flags
[
c
].
loc
[
mask
]
==
222.
)
assert
all
(
flags
[
c
].
loc
[
~
mask
]
!=
222.
)
vector
=
var
.
copy
()
vector
[:]
=
333.
flags
[
index
,
c
]
=
vector
assert
all
(
flags
[
c
].
loc
[
mask
]
==
333.
)
assert
all
(
flags
[
c
].
loc
[
~
mask
]
!=
333.
)
# works with any that pandas eat, eg with numpy
vector
[:]
=
444.
vector
=
vector
.
to_numpy
()
flags
[
index
,
c
]
=
vector
assert
all
(
flags
[
c
].
loc
[
mask
]
==
444.
)
assert
all
(
flags
[
c
].
loc
[
~
mask
]
!=
444.
)
def
test_cache
():
arr
=
np
.
array
([
[
0
,
0
,
0
,
0
],
...
...
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