matplotlib的基本用法(一)——figure的使用
阿新 • • 發佈:2018-12-18
轉自:https://blog.csdn.net/Quincuntial/article/details/70879516
本文主要是關於matplotlib的一些基本用法。
- Demo 1
import matplotlib.pyplot as plt
import numpy as np
# 繪製普通影象
x = np.linspace(-1, 1, 50)
y = 2 * x + 1
plt.plot(x, y)
plt.show()
# 繪製普通影象
y = x**2
plt.plot(x, y)
plt.show()
- 結果
- Demo 2
-
# figure的使用
x = np.linspace(-1, 1, 50)
y1 = 2 * x + 1# figure 1
plt.figure()
plt.plot(x, y1)
# figure 2
y2 = x**2
plt.figure()
plt.plot(x, y2)
# figure 3,指定figure的編號並指定figure的大小, 指定線的顏色, 寬度和型別
y2 = x**2
plt.figure(num = 5, figsize = (4, 4))
plt.plot(x, y1)
plt.plot(x, y2, color = 'red', linewidth = 1.0, linestyle = '--')
plt.show() - 結果