AttributeError: Can only use .str accessor with string values!
时间: 2024-03-04 16:48:32 浏览: 30
AttributeError: module 'tensorflow.compat.v1' has no attribute '
这个错误通常出现在尝试在非字符串列上使用 Pandas 的 .str 访问器时。请确保你正在对 Pandas 数据帧的字符串列使用 .str 访问器。如果你对整个数据帧使用 .str 访问器,可能会导致此错误。你可以检查列的数据类型,确保它是字符串类型,或者使用 .astype() 将其转换为字符串类型。
阅读全文