gpt4 book ai didi

python - Pandas - 将 numpy 数组存储在数据框列中,这是函数的结果

转载 作者:太空宇宙 更新时间:2023-11-03 14:03:24 25 4
gpt4 key购买 nike

我有一个 pandas 数据框,其中有一列 allTexts ,它存储每行的一堆文本信息。我正在尝试应用一个自定义函数,该函数根据输入文本返回 3 个值。然后我想将这 3 个输出值存储在一个新的数据帧列中 - 理想情况下作为每行的 numpy 数组。我使用 apply() 执行此操作,代码成功完成,但实际上并没有更改值。

#stub for creating a dataframe
df = pd.DataFrame({'allText':['Hateful text. This is bad', 'Text about great stuff', ' ']})

#set a placeholder - just 3 zeros for each record
df['Sentiments'] = df['allText'].apply(lambda x: np.zeros(3))

#function definition. It is a textblob library function, which gives me back sentiment scores for each text
def getTextSentiments(text):
blob = TextBlob(text)
pos = 0
neg = 0
neutral = 0
count = 0
for sentence in blob.sentences:
sentiment = sentence.sentiment.polarity
if sentiment > 0.1:
pos +=1
elif sentiment > -0.1:
neutral +=1
else:
neg +=1
count+=1
if count == 0:
count = 1
return numpy.array([pos/count, neutral/count, neg/count])

#apply function only for non-empty texts and override 3 zeros in sentiments column with real 3 values
df[df["allText"]!=" "]['Sentiments'] = df[df["allText"]!=" "]["allText"].apply(getTextSentiments)

此代码完成且没有任何错误后,我的“情绪”列中的结果仍然是全零的相同值。

MVP 来证明它即使只处理单个记录也不起作用:

df[df["allText"]!=" "].iloc[0]['Sentiments']
array([ 0., 0., 0.])
test = getTextSentiments(df[df["allText"]!=" "].iloc[0]['allText'])

test
Out[64]: (0.4166666666666667, 0.5, 0.08333333333333333)
df[df["allText"]!=" "].iloc[0]['Sentiments'] = test

df[df["allText"]!=" "].iloc[0]['Sentiments']
Out[75]: array([ 0., 0., 0.])

对我做错了什么有什么建议吗?

最佳答案

你能尝试以下方法吗?

df.Sentiments = df.apply(lambda x: x.Sentiments if x.allText ==' ' else getTextSentiments(x.allText), axis=1)

使用虚拟 getTextSentiments 函数进行测试:

df = pd.DataFrame({'allText':['Hateful text. This is bad', 'Text about great stuff', ' ']})

#set a placeholder - just 3 zeros for each record
df['Sentiments'] = df['allText'].apply(lambda x: np.zeros(3))
def getTextSentiments(text):
return (0.4166666666666667, 0.5, 0.08333333333333333)
df.Sentiments = df.apply(lambda x: x.Sentiments if x.allText ==' ' else getTextSentiments(x.allText), axis=1)
df
Out[181]:
allText Sentiments
Out[181]:
allText Sentiments
0 Hateful text. This is bad (0.4166666666666667, 0.5, 0.08333333333333333)
1 Text about great stuff (0.4166666666666667, 0.5, 0.08333333333333333)
2 [0.0, 0.0, 0.0]

关于python - Pandas - 将 numpy 数组存储在数据框列中,这是函数的结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49091835/

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