用python的matplotlib画图时,往往需要加图例说明。如果不设置任何参数,默认是加到图像的内侧的最佳位置。 import matplotlib.pyplot as plt import numpy as np x = np.arange(10) fig = plt.figure() ax = plt.subplot(111) for i in xrange(5): ax.p
做数据挖掘降维作业的时候出现问题,红字报错:No handles with labels found to put in legend. 别慌,我估摸着应该是label这个参数少了,百度一下还真的是,我夸我自己 首先我看到的一个博主说是 matplotlib.pyplot .plot 时,没有设置参数label=“xx” 其实,不只是plot这个方法,还有plt.legend()方法,我