- 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
DetectChangePoint()
Detects change point in numeric expression using ML.NET IidChangePointEstimator 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)
'Martingale ' - value is used to identify how 'weird' a data point is, based on the sequence of P-values
Syntax
DetectChangePoint(numericExpression, confidence, string changePointDetection)
Example:
DetectChangePoint("oil production" in "m3", 95, "Alert")
DetectChangePoint("oil production" in "m3", 97, "Score")
DetectChangePoint("oil production" in "m3", 99, "P-Value")
DetectChangePoint("oil production" in "m3", 93, "Martingale")