如何从提取的主题标签创建数据框?
我使用下面的代码从推文中提取主题标签。
def find_tags(row_string):
tags = [x for x in row_string if x.startswith('#')]
return tags
df['split'] = df['text'].str.split(' ')
df['hashtags'] = df['split'].apply(lambda row : find_tags(row))
df['hashtags'] = df['hashtags'].apply(lambda x : str(x).replace('\\n', ',').replace('\\', '').replace("'", ""))
df.drop('split', axis=1, inplace=True)
df
但是,当我使用下面的代码对它们进行计数时,我得到的输出是对每个字符进行计数。
from collections import Counter
d = Counter(df.hashtags.sum())
data = pd.DataFrame([d]).T
data
我得到的输出是:
我认为问题出在我用来提取主题标签的代码上。但我不知道如何解决这个问题。
I have used below code to extract hashtags from tweets.
def find_tags(row_string):
tags = [x for x in row_string if x.startswith('#')]
return tags
df['split'] = df['text'].str.split(' ')
df['hashtags'] = df['split'].apply(lambda row : find_tags(row))
df['hashtags'] = df['hashtags'].apply(lambda x : str(x).replace('\\n', ',').replace('\\', '').replace("'", ""))
df.drop('split', axis=1, inplace=True)
df
However, when I am counting them using the below code I am getting output that is counting each character.
from collections import Counter
d = Counter(df.hashtags.sum())
data = pd.DataFrame([d]).T
data
Output I am getting is:
I think the problem lies with the code that I am using to extract hashtags. But I don't know how to solve this issue.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在使用
split
的列表理解中将find_tags
更改为replace
,对于计数值,请使用Series.explode
与Series.value_counts
:然后:
Change
find_tags
byreplace
in list comprehension withsplit
and for count values useSeries.explode
withSeries.value_counts
:and then: