DataFrame.
isEmpty
Returns True if this DataFrame is empty.
True
DataFrame
New in version 3.3.0.
Changed in version 3.4.0: Supports Spark Connect.
Whether it’s empty DataFrame or not.
Examples
>>> df_empty = spark.createDataFrame([], 'a STRING') >>> df_non_empty = spark.createDataFrame(["a"], 'STRING') >>> df_empty.isEmpty() True >>> df_non_empty.isEmpty() False