nxcals.api.extraction.data.builders.DataFrame.rdd

property DataFrame.rdd: RDD[Row]

Returns the content as an pyspark.RDD of Row.

New in version 1.3.0.

Return type:

RDD

Examples

>>> df = spark.range(1)
>>> type(df.rdd)
<class 'pyspark.rdd.RDD'>