Why do get a "TypeError: argument of type 'float' is not iterable" on a series with strings and NaN?
Why do get a "TypeError: argument of type 'float' is not iterable" on a series with strings and NaN?
对于包含字符串和 NaN 值的系列,为什么 series.apply(not_happy)
其中 not_happy 定义为:
def not_happy(element):
if 'subtring' in element:
return True
else:
return False
给出错误"TypeError: argument of type 'float' is not iterable"
您正在对其应用函数的系列中的一个值不是 str 类型,或者您可能有一些缺失值。
对于包含字符串和 NaN 值的系列,为什么 series.apply(not_happy)
其中 not_happy 定义为:
def not_happy(element):
if 'subtring' in element:
return True
else:
return False
给出错误"TypeError: argument of type 'float' is not iterable"
您正在对其应用函数的系列中的一个值不是 str 类型,或者您可能有一些缺失值。