Returns a new data frame that contains only the rows
in the specified sequence.
Namespace:
Extreme.DataAnalysis
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public DataFrame<R, C> GetRows(
IEnumerable<R> keys
)
Public Function GetRows (
keys As IEnumerable(Of R)
) As DataFrame(Of R, C)
public:
DataFrame<R, C>^ GetRows(
IEnumerable<R>^ keys
)
member GetRows :
keys : IEnumerable<'R> -> DataFrame<'R, 'C>
Parameters
- keys
- Type: System.Collections.GenericIEnumerableR
A sequence of keys of the rows to return.
Return Value
Type:
DataFrameR,
CA new data frame containing only the rows
whose index is in
keys.
Reference