gpt4 book ai didi

python-3.x - 如何修复此错误 "Encoders require their input to be uniformly strings or numbers. Got [' float', 'str' ]"

转载 作者:行者123 更新时间:2023-12-05 06:52:20 34 4
gpt4 key购买 nike

这是我的代码。

label_encoder = LabelEncoder()

rainfall['station_name'] = label_encoder.fit_transform(rainfall['station_name'])

最佳答案

列中可能有空值。这可以通过以下方式检查:

rainfall.isnull().any()

如果您想快速去除任何和所有行缺失值,您可以使用:

rainfall= rainfall.dropna()

如果您只想删除缺少 station_name 的行,请使用:

rainfall.dropna(subset=['rainfall'])

关于python-3.x - 如何修复此错误 "Encoders require their input to be uniformly strings or numbers. Got [' float', 'str' ]",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65988016/

34 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com