- Weatherford Knowledge Base
- P#
- Machine Learning Functions
-
Getting Started
-
Customer Training
-
Customer Success
-
Updates
-
Production Optimization
-
Artificial Lift Optimization
-
Completion Optimization
-
Environmental, Social & Governance
-
Development, Acquisition & Divestitures
-
Enhanced Oil Recovery
-
Admin
-
P#
- Getting Started with P#
- Data Cleansing
- String Functions
- Scenario Functions
- Regression Functions
- Placeholder Functions
- Mathematical Functions
- Logic Functions
- Entities Function
- Moving Window Functions
- Time and Date Functions
- Statistical Functions
- Economic Functions
- Data Handling
- Additional Functions
- Directional Functions
- Machine Learning Functions
- DCA Functions
- Neighborhood Functions
-
Packages
DetectSpike()
Detects spike in numeric expression using ML.NET IidSpykeEstimator and specified confidence.
The result value is set by argument:
'Alert' - 0 or 1 (indicates a spike alert for a given data point)
'Score' - value for a given data point
'P-Value' - probability (the closer the p-value is to 0, the more likely the data point is an anomaly)
Syntax
DetectSpike(double numericExpression, double confidence, string spikeDetection)
Example
DetectSpike("oil production" in "m3", 95, "Alert")
DetectSpike("oil production" in "m3", 97, "Score")
DetectSpike("oil production" in "m3", 99, "P-Value")