我的pandas
DataFrame
如下所示。我正在尝试从'$'
列中删除','
和income
,然后将其应用于原始的 dataframe 。所以我创建了下面的函数。但是,这给我说"str" object has no attribute "str".
任何有关如何解决此问题的建议,将不胜感激。
注意:我是python的新手,所以请提供解释。
我的数据框:
df1=pd.DataFrame(
{'Name': ['a', 'b','c','d'],
'income': ['$1', '$2,000','$10,000','$140,000']})
我的功能:
def column_replace(x):
return x.str.replace('$', '').str.replace(',','').apply(lambda x: column_replace(x))
答案 0 :(得分:3)
In [23]: df1
Out[23]:
Name income
0 a $1
1 b $2,000
2 c $10,000
3 d $140,000
In [24]: cols_to_change = ['income']
In [25]: for col in cols_to_change:
...: df1[col] = df1[col].str.replace('[$,]', '')
...:
In [26]: df1
Out[26]:
Name income
0 a 1
1 b 2000
2 c 10000
3 d 140000