DataFrame.
take
Returns the first num rows as a list of Row.
num
list
Row
New in version 1.3.0.
Examples
>>> df.take(2) [Row(age=2, name='Alice'), Row(age=5, name='Bob')]