import matplotlib.pyplot as plt
from matplotlib.font_manager import FontProperties
font = FontProperties(fname=r”c:\windows\fonts\SimSun.ttc”, size=14)
plt.title(u”各等级的乘客年龄分布”,
fontproperties
=font)
plt.xlabel(u”年龄”,
fontproperties
=font)
plt.ylabel(u”密度”,
fontproperties
=font)
plt.legend((u’头等舱’, u’2等舱’,u’3等舱’,),loc=‘best’,
prop
=font)
版权声明:本文为qq_25886325原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。