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



Become a Patron!

Follow us on Facebook and Twitter for latest update.

It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.

https://w3resource.com/pandas/dataframe/dataframe-tail.php