This package will be deprecated with the release of ASReview LAB v2 in early 2025. To some extent, this functionality will be integrated into ASReview LAB itself. We believe that the new functionality in ASReview LAB will be enough for most of our users, and this extension is too limited for advanced use cases.
We suggest API or CLI users to:
- Read your data file with Python on R. For RIS files, Python users can use rispy.
- Use a wordcloud library like https://pypi.org/project/wordcloud/ or online service.
# create word cloud text
text = " ".join(abstracts)
# generate word cloud image
wordcloud = WordCloud(stopwords=STOPWORDS,
max_words=100,
background_color="white",
width=width,
height=height).generate(text)
AI chatbots are very skilled in helping you out with this.
This package will be deprecated with the release of ASReview LAB v2 in early 2025. To some extent, this functionality will be integrated into ASReview LAB itself. We believe that the new functionality in ASReview LAB will be enough for most of our users, and this extension is too limited for advanced use cases.
We suggest API or CLI users to:
AI chatbots are very skilled in helping you out with this.