使用jupyter notebook + matplotlib.pyplot画图的话,需要设置%matplotlib inline
,以便能正常输出图片。
要想正常显示中文和正负号,还要进行如下设置:
plt.rcParams['font.sans-serif'] = [u'SimHei']
plt.rcParams['axes.unicode_minus'] = False
使用jupyter notebook + matplotlib.pyplot画图的话,需要设置%matplotlib inline
,以便能正常输出图片。
要想正常显示中文和正负号,还要进行如下设置:
plt.rcParams['font.sans-serif'] = [u'SimHei']
plt.rcParams['axes.unicode_minus'] = False