Returns the last few rows of the data frame.
Namespace: Extreme.DataAnalysisAssembly: Extreme.Numerics.Net40 (in Extreme.Numerics.Net40.dll) Version: 6.0.16073.0 (6.0.16312.0)
public DataFrame<R, C> Tail(
int count = 5
)
Public Function Tail (
Optional count As Integer = 5
) As DataFrame(Of R, C)
public:
DataFrame<R, C>^ Tail(
int count = 5
)
member Tail :
?count : int
(* Defaults:
let _count = defaultArg count 5
*)
-> DataFrame<'R, 'C>
Parameters
- count (Optional)
- Type: SystemInt32
The number of rows to return.
Return Value
Type:
DataFrameR,
CA new data frame containing the last
count rows
of the data frame.
If count is greater than or equal to the number of rows
in the data frame, the data frame is returned unmodified.
Numerical Libraries
Supported in: 6.0
Reference