Returns a new data frame that contains only the rows specified by a range.
Namespace: Extreme.CollectionsAssembly: Extreme.Numerics.Net40 (in Extreme.Numerics.Net40.dll) Version: 6.0.16073.0 (6.0.17114.0)
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.
Numerical Libraries
Supported in: 5.x
Reference