Python is a great language for doing data analysis, primarily because of the fantastic ecosystem of data-centric Python packages. Pandas is one of those packages and makes importing and analyzing data much easier.
Pandas head() method is used to return top n (5 by default) rows of a data frame or series.
Syntax: Dataframe.head(n=5)
Parameters:
n: integer value, number of rows to be returnedReturn type: Dataframe with top n rows
To download the data set used in following example, click here.
In the following examples, the data frame used contains data of some NBA players. The image of data frame before any operations is attached below.

Example #1:
In this example, top 5 rows of data frame are returned and stored in a new variable. No parameter is passed to .head() method since by default it is 5.
# importing pandas module import pandas as pd # making data frame # calling head() method # storing in new variable data_top = data.head() # display data_top |
Output:
As shown in the output image, it can be seen that the index of returned rows is ranging from 0 to 4. Hence, top 5 rows were returned.

Example #2: Calling on Series with n parameter()
In this example, the .head() method is called on series with custom input of n parameter to return top 9 rows of the series.
# importing pandas module import pandas as pd # making data frame # number of rows to return n = 9 # creating series series = data["Name"] # returning top n rows top = series.head(n = n) # display top |
Output:
As shown in the output image, top 9 rows ranging from 0 to 8th index position were returned.

Attention geek! Strengthen your foundations with the Python Programming Foundation Course and learn the basics.
To begin with, your interview preparations Enhance your Data Structures concepts with the Python DS Course.
Recommended Posts:
- Python | pandas.to_markdown() in Pandas
- Add a Pandas series to another Pandas series
- Python | pandas.date_range() method
- Python | Filtering data with Pandas .query() method
- Python | Pandas Dataframe.describe() method
- Python | Pandas Dataframe/Series.tail() method
- Python | Pandas Series.str.isspace() method
- Python | pandas.period_range() method
- Python | pandas.to_numeric method
- Python | Pandas Series.plot() method
- Python | Pandas DataFrame.to_html() method
- Python | Pandas DataFrame.to_latex() method
- Pandas.cut() method in Python
- Select first or last N rows in a Dataframe using head() and tail() method in Python-Pandas
- Python Pandas - get_dummies() method
- Reshape a pandas DataFrame using stack,unstack and melt method
- DataFrame.to_excel() method in Pandas
- DataFrame.read_pickle() method in Pandas
- Return multiple columns using Pandas apply() method
- Selecting with complex criteria using query method in Pandas
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.

