Answers for "select first n rows of a dataframe"

4

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
5

print last n rows of dataframe

df1.tail(n)
Posted by: Guest on September-22-2020
2

pandas take first n rows

df.iloc[:n]
Posted by: Guest on July-01-2021
1

Returns the first n rows

# Returns the first n rows

df.head()
# Row(age=2, name=u'Alicz')
df.head(1)
# [Row(age=2, name=u'Alice')]
Posted by: Guest on April-20-2020

Code answers related to "select first n rows of a dataframe"

Python Answers by Framework

Browse Popular Code Answers by Language