作者:mobiledu2502939473 | 来源:互联网 | 2023-10-13 08:42
我有一个类似的问题:PandasDataFrame:removeunwantedpartsfromstringsinacolumn.所以我用过:temp_dataframe[
我有一个类似的问题:Pandas DataFrame: remove unwanted parts from strings in a column.
所以我用过:
temp_dataframe['PPI'] = temp_dataframe['PPI'].map(lambda x: x.lstrip('PPI/'))
大多数项目都以’PPI /’开头,但不是全部.似乎没有’PPI /’后缀的项目遇到此错误:
AttributeError: ‘float’ object has no attribute ‘lstrip’
我在这里错过了什么吗?
解决方法:
使用replace:
temp_dataframe['PPI'].replace('PPI/','',regex=True,inplace=True)
或string.replace:
temp_dataframe['PPI'].str.replace('PPI/','')