Gets the row nearest to the specified row key.
Namespace:
Extreme.DataAnalysis
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public DataFrameRow<R, C> GetNearestRow(
R key,
Direction direction
)
Public Function GetNearestRow (
key As R,
direction As Direction
) As DataFrameRow(Of R, C)
public:
DataFrameRow<R, C>^ GetNearestRow(
R key,
Direction direction
)
member GetNearestRow :
key : 'R *
direction : Direction -> DataFrameRow<'R, 'C>
Parameters
- key
- Type: R
The key of the row to be returned. - direction
- Type: Extreme.DataAnalysisDirection
The direction to look for the key if an exact match is not found.
Return Value
Type:
DataFrameRowR,
CThe row with key
key.
Reference