Matplotlib 自定义网格(Grid)

– Start

import numpy as np
import matplotlib.pyplot as plt

x = np.array([1, 2, 3, 4])
y = x * 2

plt.plot(x, y)
# 自定义网格
# https://matplotlib.org/api/_as_gen/matplotlib.lines.Line2D.html#matplotlib-lines-line2d
plt.grid(True, color='r', linestyle='-', linewidth=1)
plt.show()

Matplotlib 自定义网格(Grid)_第1张图片

– 更多参见:Matplotlib 精萃
– 声 明:转载请注明出处
– Last Updated on 2021-01-13
– Written by ShangBo on 2021-01-13
– End

你可能感兴趣的:(Matplotlib,matplotlib)