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