|
|
text_labels_and_annotations 81_unicode_demo. |
H.Kamifuji . |
テキストとラベルの Unicode サポートのデモ# -*- coding: utf-8 -*- """ Demo of unicode support in text and labels. """ from __future__ import unicode_literals import matplotlib.pyplot as plt plt.title('Developpes et fabriques') plt.xlabel("reactivite nous permettent d'etre selectionnes et adoptes") plt.ylabel('Andre was here!') plt.text(0.2, 0.8, 'Institut fur Festkorperphysik', rotation=45) plt.text(0.4, 0.2, 'AVA (check kerning)') plt.show() |
![]() |
text_labels_and_annotations_Examples code: unicode_demo.py |
|