- Weatherford Knowledge Base
- P#
- String 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
ResponseSurfaceScore()
Returns Response Surface of the score of predicted value using specified ML model and data for current entity. You can specify index of the category/cluster to get it's score.
When index is zero or not specified, score of the predicted value is returned.
X and Y axis should be specified by the corresponding signal name, min value, max value, and a number of intervals in an axis.
Syntax
ResponseSurfaceScore(string modelName, string featureX, double featureXmin,
double featureXmax, double featureXnum, string featureY,
double featureYmin, double featureYmax, double featureYnum)
ResponseSurfaceScore(string modelName, double index, string featureX, double featureXmin,
double featureXmax, double featureXnum, string featureY,
double featureYmin, double featureYmax, double featureYnum)
- modelName
- featureX
- featureXmin
- featureXmax
- featureXnum
- featureY
- featureYmin
- featureYmax
- featureYnum
- index
Example
ResponseSurfaceScore("Model 42", "Time On", 0, 1, 100, "Time Off", 0, 1, 100)
ResponseSurfaceScore("Model 42", 1, "Time On", 0, 1, 100, "Time Off", 0, 1, 100)