Как показать Wordcloud из фрейма данных в Python - PullRequest
0 голосов
/ 21 декабря 2018

В настоящее время у меня есть фрейм данных, содержащий слова и вес (tf * idf), и я хочу показать слова, расположенные в соответствии с весом в wordcloud.

Фрейм данных находится на левом изображении.

def generate_wordcloud(words_tem):
    word_cloud = WordCloud(width = 512, height = 512, background_color='white', stopwords= None, max_words=20).generate(words_tem)
    plt.figure(figsize=(10,8),facecolor = 'white', edgecolor='blue')
    plt.imshow(word_cloud, interpolation='bilinear')
    plt.axis('off')
    plt.tight_layout(pad=0)
    plt.show()


tfidf = TfidfVectorizer(data, lowercase = False)
tfs = tfidf.fit_transform([data]) 

feature_names = tfidf.get_feature_names()

df = pd.DataFrame(tfs.T.toarray(), index=feature_names, columns= ['weight'])
df = df.sort_values(by = 'weight', ascending = False)
word_lists = df.index.values
unique_str  = ' '.join(word_lists)
print(df[0:20])
generate_wordcloud(unique_str)

enter image description here

1 Ответ

0 голосов
/ 21 декабря 2018

Самый распространенный пакет называется wordcloud.См. https://github.com/amueller/word_cloud/blob/master/README.md

pip install wordcloud

Вы можете что-то вроде

from PIL import Image
from wordcloud import WordCloud

import matplotlib.pyplot as plt
% matplotlib inline # only if using notebooks


 text = your_text_data

# Generate a word cloud image
wordcloud = WordCloud().generate(text)

# Display the generated image:
plt.imshow(wordcloud, interpolation='bilinear')
plt.axis("off")
plt.show()

Как и выше, вместо текста, ваш поток # Шаг, начиная с модели TF-IDF из gensim.models importTfidfModel, но ваш тоже будет работать, так как мы просто создаем кортеж (термин, вес).

tfidf = TfidfModel(vectors)

# Get TF-IDF weights

weights = tfidf[vectors[0]]


# Get terms from the dictionary and pair with weights

weights = [(dictionary[pair[0]], pair[1]) for pair in weights]


# Generate the cloud

wc = WordCloud()
wc.generate_from_frequencies(weights)
...
...