Returns a new data frame that contains only the rows
with keys in the specified array.
Namespace:
Extreme.DataAnalysis
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public DataFrame<R, C> GetRows(
params R[] keys
)
Public Function GetRows (
ParamArray keys As R()
) As DataFrame(Of R, C)
public:
DataFrame<R, C>^ GetRows(
... array<R>^ keys
)
member GetRows :
keys : 'R[] -> DataFrame<'R, 'C>
Parameters
- keys
- Type: R
An array 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