DataFrame.Tail(Int32) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns the last n
rows in the DataFrame
.
[Microsoft.Spark.Since("3.0.0")]
public System.Collections.Generic.IEnumerable<Microsoft.Spark.Sql.Row> Tail (int n);
[<Microsoft.Spark.Since("3.0.0")>]
member this.Tail : int -> seq<Microsoft.Spark.Sql.Row>
Public Function Tail (n As Integer) As IEnumerable(Of Row)
Parameters
- n
- Int32
Number of rows
Returns
Last n
rows
- Attributes