| SeriesModuleTakeLastK, T Method |
Returns a series that contains the specified number of keys from the
original series. The keys are taken from the end of the series.
## Parameters
- `count` - Number of keys to take; must be smaller or equal to the original number of keys
- `series` - Input series from which the keys are taken
[category:Series transformations]
Namespace:
Deedle
Assembly:
Deedle (in Deedle.dll) Version: 1.2
Syntax public static Series<K, T> TakeLast<K, T>(
int count,
Series<K, T> series
)
Parameters
- count
- Type: SystemInt32
[Missing <param name="count"/> documentation for "M:Deedle.SeriesModule.TakeLast``2(System.Int32,Deedle.Series{``0,``1})"]
- series
- Type: DeedleSeriesK, T
[Missing <param name="series"/> documentation for "M:Deedle.SeriesModule.TakeLast``2(System.Int32,Deedle.Series{``0,``1})"]
Type Parameters
- K
- T
Return Value
Type:
SeriesK,
T[Missing <returns> documentation for "M:Deedle.SeriesModule.TakeLast``2(System.Int32,Deedle.Series{``0,``1})"]
See Also