Answers for "Displaying the first 20 rows of a dataframe"

2

df select first n rows

df2 = df.head(N)
# this should select N rows from top and copy to new df
df3 = df.tail(N)
# this should select N rows from bottom and copy to new df
Posted by: Guest on April-24-2021
1

first five rows of dataframe

#Creating a DataFrame
import pandas as pd
df = pd.DataFrame()
#Getting the first five rows
df.head()
Posted by: Guest on July-27-2021

Code answers related to "Displaying the first 20 rows of a dataframe"

Python Answers by Framework

Browse Popular Code Answers by Language