Skip to content

AIAnytime/wordcloud_lite

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

wordcloud_lite

Lightweight WordCloud Generator

Wordcloud_lite is a Python package to generate Word Cloud from the text data. WordCloud is a visual representation of the most common words within the text data. It is used most often for tags on the websites.

Few points:

  • There should not be any mising value before passing the data to the generate_wordcloud method.
  • It generates a fix size of the image.
  • You can pass additional parameters to customize the wordcloud.

On Pypi: https://pypi.org/project/wordcloud-lite/1.2/

Installation

pip install wordcloud-lite==1.2

Dependencies

wordcloud_lite uses a number of open source packages to work properly:

Uses

carbon

from wordcloud_lite.wcl import WordCloudLite
import pandas as pd 
import matplotlib.pyplot as plt
%matplotlib inline

data = pd.read_csv("data.csv")

#generate wordcloud
WordCloudLite.generate_wordcloud(data['column_having_text_records'])

License

MIT