安装
sudo apt-get install python-matplotlib
一些常用操作
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
import matplotlib.pyplot as plt #plt.ion() # interactive mode plt.figure() ax = plt.subplot(1, 4, 1) # 子图 plt.tight_layout() ax.set_title('Sample #{}'.format(i)) # 子图的标题 ax.axis('off') # 关闭坐标轴 # 显示图片 image = io.imread('1.jpg') plt.imshow(image) plt.scatter(x, y, s=10, marker='.', c='r') # 画散点 plt.show() # 显示 |