DataFlow.Clip Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Clips values so that all values are between the lower and upper boundaries.
public Microsoft.DataPrep.Common.DataFlow Clip(Microsoft.DPrep.Engine.PropertiesSystem.ColumnsSelector columns, Nullable<double> lower = null, Nullable<double> upper = null, bool useValues = true);
member this.Clip : Microsoft.DPrep.Engine.PropertiesSystem.ColumnsSelector * Nullable<double> * Nullable<double> * bool -> Microsoft.DataPrep.Common.DataFlow
Public Function Clip (columns As ColumnsSelector, Optional lower As Nullable(Of Double) = null, Optional upper As Nullable(Of Double) = null, Optional useValues As Boolean = true) As DataFlow
Parameters
- columns
- Microsoft.DPrep.Engine.PropertiesSystem.ColumnsSelector
The source columns.
- useValues
- Boolean
If true, values outside boundaries will be set to the boundary values. If false, those values will be set to null.