Data Frame<R, C>.Get Nearest Row As<T> Method
Gets the row at the specified row index as a vector of the specified type.
Definition
Namespace: Numerics.NET.DataAnalysis
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
C#
The row with key nearest to key of the data frame as a vector with element type T.
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
public Vector<T> GetNearestRowAs<T>(
R key,
Direction direction
)
Parameters
- key R
- The key of the row to be returned.
- direction Direction
- The direction to look for the key if an exact match is not found.
Type Parameters
- T
- The desired element type of the row.
Return Value
Vector<T>The row with key nearest to key of the data frame as a vector with element type T.
Exceptions
Key | A suitable key was not found in the row index. |