nxcals.api.extraction.data.builders.DataFrame.collect

DataFrame.collect() List[Row]

Returns all the records as a list of Row.

Added in version 1.3.0.

Changed in version 3.4.0: Supports Spark Connect.

Returns:

List of rows.

Return type:

list

Examples

>>> df = spark.createDataFrame(
...     [(14, "Tom"), (23, "Alice"), (16, "Bob")], ["age", "name"])
>>> df.collect()
[Row(age=14, name='Tom'), Row(age=23, name='Alice'), Row(age=16, name='Bob')]