- /
-
Why Wordcloud?
on 12 Oct 2021
- 5
- 43
- 2
- 0
- 224
x = str2num('@evalc');
rng(534830);
c = '';
for k=1:34
c = [c ' ' x('why')];
end
punctuationCharacters = ["." "?" "!" "," ";" ":"];
c = replace(c,punctuationCharacters," ");
c_cat = categorical(split(lower(c)));
wordcloud(c_cat)
title('Why')