Skip to content

Commit

Permalink
fixed bug
Browse files Browse the repository at this point in the history
  • Loading branch information
marixko committed Oct 20, 2022
1 parent 769a79c commit db03103
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions arxivfyme.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@
df_pandas["tokens"] = tokens
df_pandas['tokens_str'] = df_pandas['tokens'].apply(lambda x: ','.join(map(str, x)))
text = " ".join(summ for summ in df_pandas.tokens_str.astype(str))
show_wordcloud(text)

fig = show_wordcloud(st.slider('max_words', 5, 500, 200, step = 10))
fig = show_wordcloud(text, st.slider('max_words', 5, 500, 200, step = 10))
st.pyplot(fig)

0 comments on commit db03103

Please sign in to comment.