Reputation: 7821
I am trying to show unicode characters in matplotlib, but it is not showing as unicode, rather it is showing as boxes. Here is the code and the result
How can I show unicode strings in matplotlib?
Upvotes: 0
Views: 578
Reputation: 318
use matplotlib.rc('font', family='Your Font')
for displaying the required unicodes.
Upvotes: 1