You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Word clouds contain the most common words, and for free text fields, these words are often: 'and', 'to', 'the', 'from' etc. Which provide no meaningful insight into the data.
Proposed feature
Include an option to remove stopwords when generating word clouds. Perhaps by incorporating the nltk package to identify the list of stopwords.
Example:
from nltk.corpus import stopwords
stop = stopwords.words('english')
Alternatives considered
Removing stopwords from a pandas dataframe prior to generating the report wouldn't suffice in this case, as it would affect the 'samples' in the report
Additional context
No response
The text was updated successfully, but these errors were encountered:
Missing functionality
Word clouds contain the most common words, and for free text fields, these words are often: 'and', 'to', 'the', 'from' etc. Which provide no meaningful insight into the data.
Proposed feature
Include an option to remove stopwords when generating word clouds. Perhaps by incorporating the
nltk
package to identify the list of stopwords.Example:
Alternatives considered
Removing stopwords from a pandas dataframe prior to generating the report wouldn't suffice in this case, as it would affect the 'samples' in the report
Additional context
No response
The text was updated successfully, but these errors were encountered: