isnan is not a method belonging to the Column class, you need to import it:from pyspark.sql.functions import isnan并像这样使用它:df.filter((df["ID"] == "") | df["ID"].isNull() | isnan(df["ID"])).count() 这篇关于Python/Pyspark - 计数 NULL、空和 NaN的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云!
07-31 03:05