Using numbers in wordcloud
Ältere Kommentare anzeigen
Hello,
im trying to create a wordcloud from a string which includes numbers and words, but unfortunately the numbers in the string are ignored.
For example if I try:
wordcloud('hello test 123 hello');
there's only 'hello' and 'test' in the wordcloud.
Does anyone know a way to show numbers in wordcloud?
Thx in advance
3 Kommentare
darova
am 14 Mai 2020
try this
s = 'hello test 123 hello';
s1 = strsplit(s,' ');
wordcloud(s1)
snipsnap333
am 14 Mai 2020
darova
am 14 Mai 2020
im lost. don't have other ideas
Akzeptierte Antwort
Weitere Antworten (0)
Kategorien
Mehr zu Display and Presentation finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
