Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

Pandas DataFrame: tail() function

DataFrame - tail() function

The tail() function is used to get the last n rows.

This function returns last n rows from the object based on position. It is useful for quickly verifying data, for example, after sorting or appending rows.

Syntax:

DataFrame.tail(self, n=5)

Parameters:

Name Description Type/Default Value Required / Optional
n Number of rows to select. int
Default Value: 5
Required

Returns: type of caller
The last n rows of the caller object.

Example:


Download the Pandas DataFrame Notebooks from here.

Previous: DataFrame - pop() function
Next: DataFrame - xs() function