Using numbers in wordcloud
이전 댓글 표시
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
darova
2020년 5월 14일
try this
s = 'hello test 123 hello';
s1 = strsplit(s,' ');
wordcloud(s1)
snipsnap333
2020년 5월 14일
darova
2020년 5월 14일
im lost. don't have other ideas
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Display and Presentation에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
