0

我制作了一个可视化孟加拉语停用词的代码,

而且效果也很好,但是没有显示孟加拉语字体

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)

在此处输入图像描述

4

0 回答 0