gpt4 book ai didi

python - 无法将干净的 unicode 文本插入 pandas 中的 DataFrame

转载 作者:行者123 更新时间:2023-11-30 22:45:16 24 4
gpt4 key购买 nike

我正在做两件事。1)过滤pandas中的数据框2) 清理过滤数据框中特定列中的 unicode 文本。

import pandas as pd
import probablepeople
from unidecode import unidecode
import re

#read data
df1 = pd.read_csv("H:\\data.csv")
#filter
df1=df1[(df1.gender=="female")]
#reset index because otherwise indexes will be as per original dataframe
df1=df1.reset_index()

现在我正在尝试清理地址栏中的 unicode 文本

#clean unicode text
for i in range(10):
df1.loc[i][16] = re.sub(r"[^a-zA-Z.,' ]",r' ',df1.address[i])

但是,我无法这样做,下面是我收到的错误。

c:\python27\lib\site-packages\ipykernel\__main__.py:4: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: http://pandas.pydata.org/pandas-docs/stable/indexing.html#indexing-view-versus-copy

最佳答案

我认为你可以使用str.replace :

df1=df1[df1.gender=="female"]
#reset index with parameter drop if need new monotonic index (0,1,2,...)
df1=df1.reset_index(drop=True)

df1.address = df1.address.str.replace(r"[^a-zA-Z.,' ]",r' ')

关于python - 无法将干净的 unicode 文本插入 pandas 中的 DataFrame,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41240005/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com