pyspark.sql.DataFrame.tail¶
-
DataFrame.tail(num)[source]¶ Returns the last
numrows as alistofRow.Running tail requires moving data into the application’s driver process, and doing so with a very large
numcan crash the driver process with OutOfMemoryError.New in version 3.0.0.
Examples
>>> df.tail(1) [Row(age=5, name='Bob')]