我对此有一个类似的问题: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”对象没有属性“ lstrip”
我在这里想念什么吗?
最佳答案
使用replace:
temp_dataframe['PPI'].replace('PPI/','',regex=True,inplace=True)
或string.replace:
temp_dataframe['PPI'].str.replace('PPI/','')