| FrameTRowKey, TColumnKeyGetRowAtT Method |
Returns a row of the data frame that is located at the specified int offset.
This does not use the row key and directly accesses the frame data. This method
is generic and returns the result as a series containing values of the specified type.
To get heterogeneous series of type `ObjectSeries<'TCol>`, use the `frame.Rows` property.
If the index is invalid, `ArgumentOutOfRangeException` is thrown. You can get the
matching key at a specified index using `GetRowKeyAt`.
## Parameters
- `index` - Offset (integer) of the row to be returned
[category:Accessors and slicing]
Namespace:
Deedle
Assembly:
Deedle (in Deedle.dll) Version: 1.2
Syntax public Series<TColumnKey, T> GetRowAt<T>(
int index
)
Parameters
- index
- Type: SystemInt32
[Missing <param name="index"/> documentation for "M:Deedle.Frame`2.GetRowAt``1(System.Int32)"]
Type Parameters
- T
Return Value
Type:
SeriesTColumnKey,
T[Missing <returns> documentation for "M:Deedle.Frame`2.GetRowAt``1(System.Int32)"]
See Also