Skip to content

Commit

Permalink
deleted stopwords
Browse files Browse the repository at this point in the history
  • Loading branch information
marixko committed Oct 20, 2022
1 parent db03103 commit 7544d66
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,10 @@ def clean(s):
return s


def show_wordcloud(data, max_words):
def show_wordcloud(data, maxwords):
cloud = WordCloud(
background_color='white',
stopwords=stopwords,
max_words=100,
max_words=maxwords,
max_font_size=30,
scale=3,
random_state=1)
Expand Down

0 comments on commit 7544d66

Please sign in to comment.