Answers for "check for null values in rows pyspark"

-1

check for null values in rows pyspark

df.filter("state IS NULL AND gender IS NULL").show()
df.filter(df.state.isNull() & df.gender.isNull()).show()
Posted by: Guest on March-12-2021

Code answers related to "check for null values in rows pyspark"

Python Answers by Framework

Browse Popular Code Answers by Language