pandas first 100 rows code example
Example 1: print last n rows of dataframe
df1.tail(n)
Example 2: 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')]
df1.tail(n)
# Returns the first n rows
df.head()
# Row(age=2, name=u'Alicz')
df.head(1)
# [Row(age=2, name=u'Alice')]