从字符串中删除数字会导致SettingWithCopyWarning

时间:2018-09-25 09:17:39

标签: python python-3.x pandas

我尝试从pd.Dataframe中的字符串中删除数字。我的代码:

test['string'] = test.loc[:,'string'].str.replace('\d+','')

它可以按需工作,但会产生SettingWithCopyWarning。我也尝试过:

test['string'] = test['string'].str.replace('\d+','')

,但结果相同。我怎么知道pandas是否满足我的要求。基本上,“字符串”列包含一些可能包含多个数字的句子,例如:“在03.03上,我买了2个applepies”。

0 个答案:

没有答案