DataFrameColumn.ClampImplementation<U>(U, U, Boolean) Method

Definition

Clamps values beyond the specified thresholds

protected virtual Microsoft.Data.Analysis.DataFrameColumn ClampImplementation<U> (U min, U max, bool inPlace);
abstract member ClampImplementation : 'U * 'U * bool -> Microsoft.Data.Analysis.DataFrameColumn
override this.ClampImplementation : 'U * 'U * bool -> Microsoft.Data.Analysis.DataFrameColumn
Protected Overridable Function ClampImplementation(Of U) (min As U, max As U, inPlace As Boolean) As DataFrameColumn

Type Parameters

U

Parameters

min
U

Minimum value. All values below this threshold will be set to it

max
U

Maximum value. All values above this threshold will be set to it

inPlace
Boolean

Indicates if the operation should be performed in place

Returns

Applies to