Wordcloudによる可視化で、絵文字の表示がされません。
7 views (last 30 days)
Show older comments
eri matsuyama
on 19 Aug 2021
Commented: eri matsuyama
on 19 Aug 2021
お世話になっております。
以下を参照しながら絵文字入りテキスト解析をお勉強しています。
しかし、私の場合(windows10, MATLAB R2020b), Wordcloudにて可視化した際、以下のように
多くの絵文字が抜け落ちて四角形となります。どのようにすると、上手く可視化できるでしょうか。
ご教授よろしくお願いいたします。
0 Comments
Accepted Answer
Toru Ikegami
on 19 Aug 2021
こんにちは,
wordcloud で使用しているフォントが絵文字に対応していない可能性があります.(日本語環境と英語環境ではデフォルトのフォントが違うので,それが原因だと思われます.)wordcloud の名前ー値引数でフォント名を指定すると期待通りに表示されます.
filename = "weekendUpdates.xlsx";
tbl = readtable(filename,'TextType','string');
textData = tbl.TextData;
wordcloud(textData,"FontName","Caribli");
More Answers (0)
See Also
Categories
Find more on Display and Presentation in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!