Answers for "Returns the first n rows"

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 "Returns the first n rows"

Python Answers by Framework

Browse Popular Code Answers by Language