pyspark.sql.functions.isnull

pyspark.sql.functions。 isnull ( 上校:ColumnOrName )→pyspark.sql.column.Column

一個表達式,返回true敵我識別列是空的。

例子

> > >df=火花createDataFrame(((1,沒有一個),(沒有一個,2)),(“一個”,“b”))> > >df選擇(isnull(“一個”)別名(“r1”),isnull(df一個)別名(“r2”))收集()[行(r1 = False, r2 = False)、行(r1 = True, r2 = True)]