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
4ec76257
Commit
4ec76257
authored
4 years ago
by
Bert Palm
🎇
Browse files
Options
Downloads
Patches
Plain Diff
fixed changepoints.py
parent
a13af8b8
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
+1
-0
1 addition, 0 deletions
saqc/flagger/flags.py
saqc/funcs/changepoints.py
+7
-6
7 additions, 6 deletions
saqc/funcs/changepoints.py
with
8 additions
and
6 deletions
saqc/flagger/flags.py
+
1
−
0
View file @
4ec76257
...
...
@@ -190,6 +190,7 @@ class Flags:
# technically it would be possible to select a field and set
# the entire column to a scalar flag value (float), but it has
# a high potential, that this is not intended by the user.
# if desired use ``flagger[:, field] = flag``
if
not
isinstance
(
value
,
pd
.
Series
):
raise
ValueError
(
"
must pass value of type pd.Series
"
)
...
...
This diff is collapsed.
Click to expand it.
saqc/funcs/changepoints.py
+
7
−
6
View file @
4ec76257
...
...
@@ -30,7 +30,7 @@ def flagChangePoints(
fwd_window
:
Optional
[
FreqString
]
=
None
,
min_periods_fwd
:
Optional
[
IntegerWindow
]
=
None
,
closed
:
Literal
[
"
right
"
,
"
left
"
,
"
both
"
,
"
neither
"
]
=
"
both
"
,
try_to_jit
:
bool
=
True
,
try_to_jit
:
bool
=
True
,
# todo rm
reduce_window
:
FreqString
=
None
,
reduce_func
:
Callable
[[
np
.
ndarray
,
np
.
ndarray
],
int
]
=
lambda
x
,
_
:
x
.
argmax
(),
**
kwargs
...
...
@@ -107,7 +107,7 @@ def assignChangePointCluster(
fwd_window
:
str
=
None
,
min_periods_fwd
:
Optional
[
int
]
=
None
,
closed
:
Literal
[
"
right
"
,
"
left
"
,
"
both
"
,
"
neither
"
]
=
"
both
"
,
try_to_jit
:
bool
=
True
,
try_to_jit
:
bool
=
True
,
# todo: rm
reduce_window
:
str
=
None
,
reduce_func
:
Callable
[[
np
.
ndarray
,
np
.
ndarray
],
float
]
=
lambda
x
,
_
:
x
.
argmax
(),
model_by_resids
:
bool
=
False
,
...
...
@@ -205,7 +205,7 @@ def assignChangePointCluster(
stat_func
=
jit_sf
thresh_func
=
jit_tf
try_to_jit
=
True
except
(
numba
.
core
.
errors
.
TypingError
,
numba
.
core
.
errors
.
UnsupportedError
,
IndexError
):
except
(
numba
.
TypingError
,
numba
.
UnsupportedError
,
IndexError
):
try_to_jit
=
False
logging
.
warning
(
'
Could not jit passed statistic - omitting jitting!
'
)
...
...
@@ -219,7 +219,7 @@ def assignChangePointCluster(
residues
=
pd
.
Series
(
np
.
nan
,
index
=
data
[
field
].
index
)
residues
[
masked_index
]
=
stat_arr
data
[
field
]
=
residues
flagger
=
flagger
.
setFlags
(
field
,
flag
=
UNFLAGGED
,
force
=
True
,
**
kwargs
)
flagger
[:,
field
]
=
UNFLAGGED
return
data
,
flagger
det_index
=
masked_index
[
result_arr
]
...
...
@@ -239,10 +239,11 @@ def assignChangePointCluster(
# (better to start cluster labels with number one)
cluster
+=
1
data
[
field
]
=
cluster
flagger
=
flagger
.
setFlags
(
field
,
flag
=
UNFLAGGED
,
force
=
True
,
**
kwargs
)
flagger
[:,
field
]
=
UNFLAGGED
if
flag_changepoints
:
flagger
=
flagger
.
setFlags
(
field
,
loc
=
det_index
)
# todo: does not respect kwargs[flag]
flagger
[
det_index
,
field
]
=
BAD
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