摘要: import matplotlib.pyplot as plt # 1D data x = [1,2,3,4,5] y = [2.3,3.4,1.2,6.6,7.0] plt.figure(figsize=(12,6)) plt.subplot(231) plt.plot(x,y) plt.titl 阅读全文
posted @ 2018-12-19 19:48 huangzc 阅读(204) 评论(0) 推荐(0) 编辑