DataFrame.Modulo Method

Definition

Overloads

Modulo<T>(IReadOnlyList<T>, Boolean)
Modulo<T>(T, Boolean)

Performs an element-wise modulus operation on each column

Modulo<T>(IReadOnlyList<T>, Boolean)

public Microsoft.Data.Analysis.DataFrame Modulo<T> (System.Collections.Generic.IReadOnlyList<T> values, bool inPlace = false) where T : struct;
member this.Modulo : System.Collections.Generic.IReadOnlyList<'T (requires 'T : struct)> * bool -> Microsoft.Data.Analysis.DataFrame (requires 'T : struct)
Public Function Modulo(Of T As Structure) (values As IReadOnlyList(Of T), Optional inPlace As Boolean = false) As DataFrame

Type Parameters

T

Parameters

values
IReadOnlyList<T>
inPlace
Boolean

Returns

Applies to

Modulo<T>(T, Boolean)

Performs an element-wise modulus operation on each column

public Microsoft.Data.Analysis.DataFrame Modulo<T> (T value, bool inPlace = false) where T : struct;
member this.Modulo : 'T * bool -> Microsoft.Data.Analysis.DataFrame (requires 'T : struct)
Public Function Modulo(Of T As Structure) (value As T, Optional inPlace As Boolean = false) As DataFrame

Type Parameters

T

Parameters

value
T
inPlace
Boolean

Returns

Applies to