Using numbers in wordcloud

3 visualizaciones (últimos 30 días)
snipsnap333
snipsnap333 el 14 de Mayo de 2020
Comentada: snipsnap333 el 14 de Mayo de 2020
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 comentarios
snipsnap333
snipsnap333 el 14 de Mayo de 2020
Same result. The numbers are still ignored.
darova
darova el 14 de Mayo de 2020
im lost. don't have other ideas

Iniciar sesión para comentar.

Respuesta aceptada

Cris LaPierre
Cris LaPierre el 14 de Mayo de 2020
Do you have the Text Analytics Toolbox?
Assuming you do not, and you don't have a count of the words, the syntax you need to use is
wordcloud(C)
  • wordcloud(C) creates a word cloud chart from the unique elements of categorical array C with sizes corresponding to their frequency counts. If you have Text Analytics Toolbox™, then C can be a string array, character vector, or a cell array of character vectors.
Split the string and turn it into categoricals.
s = 'hello test 123 hello';
S=split(s)
C=categorical(S)
wordcloud(C)
  1 comentario
snipsnap333
snipsnap333 el 14 de Mayo de 2020
Thanks, your solution worked.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Display and Presentation en Help Center y File Exchange.

Productos


Versión

R2019b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by