文章作者:Tyan
博客:noahsnail.com ?|? CSDN ?|? 簡書
本文主要是關(guān)于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()
- 結(jié)果
- 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()
- 結(jié)果