Returns a new data frame that contains only the rows specified by a range.
Namespace:
Extreme.DataAnalysis
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public DataFrame<R, C> GetRows(
R firstKey,
R lastKey
)
Public Function GetRows (
firstKey As R,
lastKey As R
) As DataFrame(Of R, C)
public:
DataFrame<R, C>^ GetRows(
R firstKey,
R lastKey
)
member GetRows :
firstKey : 'R *
lastKey : 'R -> DataFrame<'R, 'C>
Parameters
- firstKey
- Type: R
The key of the first row to be included in the result. - lastKey
- Type: R
The key of the last row to be included in the result.
Return Value
Type:
DataFrameR,
CA new data frame containing only the rows with a key between
firstKey and
lastKey.
Reference