Wordcloudによる可視化で、絵文字の表示がされません。
7 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
eri matsuyama
le 19 Août 2021
Commenté : eri matsuyama
le 19 Août 2021
お世話になっております。
以下を参照しながら絵文字入りテキスト解析をお勉強しています。
しかし、私の場合(windows10, MATLAB R2020b), Wordcloudにて可視化した際、以下のように
多くの絵文字が抜け落ちて四角形となります。どのようにすると、上手く可視化できるでしょうか。
ご教授よろしくお願いいたします。
0 commentaires
Réponse acceptée
Toru Ikegami
le 19 Août 2021
こんにちは,
wordcloud で使用しているフォントが絵文字に対応していない可能性があります.(日本語環境と英語環境ではデフォルトのフォントが違うので,それが原因だと思われます.)wordcloud の名前ー値引数でフォント名を指定すると期待通りに表示されます.
filename = "weekendUpdates.xlsx";
tbl = readtable(filename,'TextType','string');
textData = tbl.TextData;
wordcloud(textData,"FontName","Caribli");
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Display and Presentation dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!