python中plot不能显示标签_Python Matplotlib stackplot中的标签区域
我想在matplotlib stackplot的区域内生成标签.我会选择标记用于绑定该区域的线.考虑这个例子:import numpy as npfrom matplotlib import pyplot as pltfnx = lambda : np.random.randint(5, 50, 10)x = np.arange(10)y1, y2, y3 = fnx(), fnx(), fnx(...