摘要: legend()的一个用法: 当我们有多个 axes时,我们如何把它们的图例放在一起呢?? 我们可以这么做: import matplotlib.pyplot as plt import numpy as np x = np.arange(1, 11) fig = plt.figure(1) ax1 = plt.subplot(2, 1, 1) ax2 = plt.subplot(2, 1, ... 阅读全文
posted @ 2017-05-01 16:24 殷大侠 阅读(96862) 评论(0) 推荐(1) 编辑