新版的 matplotlib 已经支持字体回退功能,因此可以直接设置字体为 Times New Roman 和SimSun(宋体)。这样英文会以 Times New Roman 显示,中文会以 宋体 显示 import matplotlib.pyplot as plt plt.rcParams['font.family'] = ['Times New Roman','SimSun'] 折线图、点线图 plot 即可以绘制折线图,也可以绘制点...
hide_axes=['left','top','right','bottom']foraxisinhide_axes:ax.spines[axis].set_visible(False) 读者可以关注一下这个ax.spines,即轴的脊椎,将其可见度设为False: 设定右(上)坐标轴 ax.twinx(),同理可以设置上坐标轴ax.twiny()。 ax.plot(x,y,color='limegreen',label='Xovee')axr=ax.twinx...