FrameViewOrderByT(String, ComparisonT) Method

Sorts all rows by the given function of the given column.

Definition

Namespace: Meta.Numerics.Data
Assembly: Meta.Numerics (in Meta.Numerics.dll) Version: 4.2.0+6d77d64445f7d5d91b12e331399c4362ecb25333
C#
public FrameView OrderBy<T>(
	string columnName,
	Comparison<T> comparer
)

Parameters

columnName  String
The column to sort on.
comparer  ComparisonT
A comparison function of columnName values.

Type Parameters

T
The type of values being compared.

Return Value

FrameView
A view of the data sorted by the function of the given column.

See Also