wordcloud plot does not display emoji symbols.

While going through example on my MATLAB 2018b using codes from https://au.mathworks.com/help/textanalytics/ug/analyze-test-data-using-emojis.html, I get wordcloud plots with emoji symbols missing. Could you please let me know which font is being used and how to fix this problem? I am using Windows 10 system.
example01.png

Answers (1)

I've had the same problem.
Download the Symbola font and try this...
figure;
h=wordcloud(uniqueWords,numOccurrences);
title("Emojis Cloud")
set(gcf, 'Units', 'Normalized', 'OuterPosition', [0 0 1 1]);
h.FontName='Symbola';
I hope it works.

Categories

Find more on General Applications in Help Center and File Exchange

Products

Asked:

on 2 Mar 2019

Answered:

on 24 Apr 2020

Community Treasure Hunt

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

Start Hunting!