有时默认的图例位置不符合我们的需要,那么我们可以使用下面的代码对legend位置进行调整. plt.legend(loc='String or Number', bbox_to_anchor=(num1, num2)) 其中,第一个参数loc,设置它可以遵循以下的表格 String Number upper right 1 upper left 2 lower left 3 lower right 4 right 5 center left 6 center right 7 lower cent…
转自:https://www.cnblogs.com/alimin1987/p/8047833.html import matplotlib.pyplot as pltimport numpy as npimport pandas as pdx= np.arange(1,20,1)plt.plot(x,x**2,label='Fast')#label为标签plt.plot(x,x*2,label='Mormal')#lplt.legend(loc=0,ncol=2)#图例及位置: 1右上角,2…
修改X,Y,Z轴的刻度值 from matplotlib.ticker import MultipleLocator,FuncFormatter from mpl_toolkits.mplot3d import Axes3D import matplotlib.pyplot as plt from matplotlib import cm from matplotlib import colors from matplotlib.ticker import LinearLocator, Form…