Include "a" character in a wordcloud

Lairenlakpam · Apr 12, 2022 · 1.9K views
Question
I am just trying to plot a simple wordcloud of grades which has a grade string, say, grade='DBBBDBEFBFFASBCBABCCSBCAABBCBACDBFDBAFDAACAFAACABBFABCBAACF' when I plot it using,     >>wordcloud(grade) the function removes all Grade A information. How do I include the grade A in the plot?
Expert Answer
Profile picture of Kshitij Singh
Kshitij Singh PhD Expert
Answered Nov 20, 2025
Bear in mind that this is with base matlab. The text analytics toolbox, which I don't have, may have some better ways of doing what you want.
 
I'm simply converting your char array into a categorical array. It doesn't look like wordcloud does any filtering on categorical arrays:
 
grade='DBBBDBEFBFFASBCBABCCSBCAABBCBACDBFDBAFDAACAFAACABBFABCBAACF'
wordcloud(categorical(cellstr(grade')))
displays

 

Have a different question? Ask here

Get a Free Consultation or a Sample Assignment Review!