Skip to content
Snippets Groups Projects
Commit e2eabb08 authored by Peter Lünenschloß's avatar Peter Lünenschloß
Browse files

rolled back mess

parent 1b8bd48e
No related branches found
No related tags found
1 merge request!703Numba riddance
Pipeline #175418 failed with stages
in 3 minutes and 25 seconds
This commit is part of merge request !703. Comments created here will be created in the context of that merge request.
...@@ -15,7 +15,6 @@ Cook Books ...@@ -15,7 +15,6 @@ Cook Books
DataRegularisation DataRegularisation
OutlierDetection OutlierDetection
ResidualOutlierDetection ResidualOutlierDetection
DriftDetection
MultivariateFlagging MultivariateFlagging
../documentation/GenericFunctions ../documentation/GenericFunctions
...@@ -64,16 +63,6 @@ Cook Books ...@@ -64,16 +63,6 @@ Cook Books
+++ +++
*Wrap your custom logical and arithmetic expressions with the generic functions* *Wrap your custom logical and arithmetic expressions with the generic functions*
.. grid-item-card:: Drift Detection
:link: DriftDetection
:link-type: doc
* define metrics to measure distance between data series
* automatically determine majority and anomalous data groups
+++
*Detecting datachunks drifting apart from a reference group*
.. grid-item-card:: Modelling, Residuals and Arithmetics .. grid-item-card:: Modelling, Residuals and Arithmetics
:link: ResidualOutlierDetection :link: ResidualOutlierDetection
:link-type: doc :link-type: doc
......
...@@ -62,7 +62,6 @@ Documentation ...@@ -62,7 +62,6 @@ Documentation
* outlier detection * outlier detection
* frequency alignment * frequency alignment
* drift detection
* data modelling * data modelling
* wrapping generic or custom functionality * wrapping generic or custom functionality
+++ +++
......
...@@ -11,11 +11,11 @@ sac254_raw ; align(freq='15min') ...@@ -11,11 +11,11 @@ sac254_raw ; align(freq='15min')
# Drift Correcture # Drift Correcture
sac254_raw ; correctDrift(target='sac254_corr', maintenance_field='maint', model='exponential') sac254_raw ; correctDrift(target='sac254_corr', maintenance_field='maint', model='exponential')
# Multivariate Flagging Procedure # Multivariate Flagging Procedure
level_z ; transform(field=['level_raw'], func=zScore(x), window='20D') level_z ; transform(field=['level_raw'], func=zScore(x), freq='20D')
water_z ; transform(field=['water_temp_raw'], func=zScore(x), window='20D') water_z ; transform(field=['water_temp_raw'], func=zScore(x), freq='20D')
sac_z ; transform(field=['sac254_raw'], func=zScore(x), window='20D') sac_z ; transform(field=['sac254_raw'], func=zScore(x), freq='20D')
kNN_scores ; assignKNNScore(field=['level_z', 'water_z', 'sac_z'], window='20D') kNN_scores ; assignKNNScore(field=['level_z', 'water_z', 'sac_z'], freq='20D')
kNN_scores ; flagByStray(window='20D') kNN_scores ; flagByStray(freq='20D')
level_raw ; concatFlags(field=['kNN_scores'], label='STRAY') level_raw ; concatFlags(field=['kNN_scores'], label='STRAY')
sac254_corr ; concatFlags(field=['kNN_scores'], label='STRAY') sac254_corr ; concatFlags(field=['kNN_scores'], label='STRAY')
water_temp_raw ; concatFlags(field=['kNN_scores'], label='STRAY') water_temp_raw ; concatFlags(field=['kNN_scores'], label='STRAY')
...@@ -2,13 +2,8 @@ varname;test ...@@ -2,13 +2,8 @@ varname;test
#------;-------------------------- #------;--------------------------
SM1;flagRange(min=10, max=60) SM1;flagRange(min=10, max=60)
SM2;flagRange(min=10, max=60) SM2;flagRange(min=10, max=60)
<<<<<<< HEAD
SM1;flagMAD(window="15d", z=3.5) SM1;flagMAD(window="15d", z=3.5)
SM2;flagMAD(window="30d", z=3.5) SM2;flagMAD(window="30d", z=3.5)
=======
SM1;flagMAD(freq="15d", z=3.5)
SM2;flagMAD(freq="30d", z=3.5)
>>>>>>> parent of 30eb9fe1... mc solved
SM1;plot(path='../resources/temp/SM1processingResults') SM1;plot(path='../resources/temp/SM1processingResults')
SM2;plot(path='../resources/temp/SM2processingResults') SM2;plot(path='../resources/temp/SM2processingResults')
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment