This question shows research effort; it is useful and clear
0
This question does not show any research effort; it is unclear or not useful
Bookmark this question.
Show activity on this post.
我制作了一个可视化孟加拉语停用词的代码,
而且效果也很好,但是没有显示孟加拉语字体
counter=Counter(corpus)
most=counter.most_common()
x=[]
y=[]
for word,count in most[:40]:
if (word not in stopwords):
x.append(word)
y.append(count
sns.barplot(x=y,y=x)