Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
SaQC
Manage
Activity
Members
Labels
Plan
Issues
35
Issue boards
Milestones
Wiki
Code
Merge requests
7
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
03cfa4ac
Commit
03cfa4ac
authored
4 years ago
by
Bert Palm
🎇
Browse files
Options
Downloads
Patches
Plain Diff
SaQC() - performance improvement again
parent
eb366a5f
No related branches found
Branches containing commit
No related tags found
Tags containing commit
2 merge requests
!193
Release 1.4
,
!188
Release 1.4
Pipeline
#6933
failed with stages
in 9 minutes and 15 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
saqc/core/core.py
+5
-1
5 additions, 1 deletion
saqc/core/core.py
with
5 additions
and
1 deletion
saqc/core/core.py
+
5
−
1
View file @
03cfa4ac
...
...
@@ -193,7 +193,11 @@ class SaQC:
if
any
([
fdump
[
"
ctrl_kws
"
][
"
plot
"
]
for
fdump
in
self
.
_to_call
]):
plotAllHook
(
data
,
flagger
)
return
SaQC
(
flagger
,
data
,
nodata
=
self
.
_nodata
,
error_policy
=
self
.
_error_policy
)
# This is much faster for big datasets that to throw everything in the constructor.
# Simply because of _initFlagger -> merge() -> mergeDios() over all columns.
new
=
SaQC
(
SimpleFlagger
(),
dios
.
DictOfSeries
(),
nodata
=
self
.
_nodata
,
error_policy
=
self
.
_error_policy
)
new
.
_flagger
,
new
.
_data
=
flagger
,
data
return
new
def
getResult
(
self
):
"""
...
...
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