python stackplot_python高级统计图
堆积图柱形图import matplotlib as mplimport matplotlib.pyplot as pltimport numpy as npx = range(1,6)y = np.random.randint(1,14,5)y1 = np.random.randint(1,10,5)plt.bar(x,y,align='center',color='gray',tick_lab...