我正在尝试使用matplotlib
来制作带有CJK标签的情节(特别是日语)。由于CJK可以垂直书写,因此我希望以这种方式书写ylabel
。我在下面找到了一种方法来执行此操作,但是它需要用\n
填充每个字符才能创建所需的效果。但是,这是哈克。
是否有更好的方法,例如将每个字符旋转90度?
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Make a plot with Japanese labels.
"""
import matplotlib.pyplot as plt
from matplotlib import font_manager as fm
# Set fonts so that labels display correctly.
pathToInstall = '/path/to/fonts'
fontFiles = fm.findSystemFonts(pathToInstall)
fontList = fm.createFontList(fontFiles)
fm.fontManager.ttflist.extend(fontList)
fp = fm.FontProperties()
fp.set_family('Noto Sans Mono CJK JP')
fig = plt.figure()
fig.suptitle('こんにちは、世界さん!', FontProperties=fp) # Fine
plt.xlabel('アイウエオ', FontProperties=fp) # Fine
plt.ylabel(
'あ\nい\nう\nえ\nお', # How can I avoid padding each character with \n?
FontProperties = fp,
rotation = 'horizontal',
verticalalignment = 'center',
horizontalalignment = 'right'
)
plt.show()