python35 利用matplotlib的subplot画多幅图

一 画直方图 import matplotlib.pyplot as plt plt.figure("hist") arr=images.flatten() n, bins, patches = plt.hist(arr, bins=256, normed=1,edgecolor='None',facecolor='red') plt.show() 二 利用subplot画多幅图 import
相关文章
相关标签/搜索