作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有几个情节脚本使用 subplots
生成图形和 axis[i].grid(axis = 'y')
仅显示 y 轴的网格。其他工作正常,但我不知道为什么这个脚本不显示网格线。有人可以帮助我吗?
import matplotlib.pyplot as plt
import numpy as np
nel = 8
npts = 10
h = 1./nel
x = np.zeros((npts+1, nel))
x_c = np.zeros(nel)
for i in range(0, nel):
x[:,i] = np.linspace(i*h, (i+1)*h, npts+1)
x_c[i] = (i+0.5) * h
print(x)
print(x_c)
# 3rd order DGD basis
fig, axs = plt.subplots(2, 1, sharex = True, figsize = (6,10), facecolor = 'w')
plt.tight_layout()
fig.subplots_adjust(hspace = 0)
y = np.zeros((npts+1, nel)) # for 0th element
y[:,0] = (x[:,0] - x_c[1]) * (x[:,0] - x_c[2]) * (x[:,0] - x_c[3])/(-6*h**3)
y[:,1] = (x[:,1] - x_c[1]) * (x[:,1] - x_c[2]) * (x[:,1] - x_c[3])/(-6*h**3)
for j in range(0,nel):
axs[0].plot(x[:,j], y[:,j], 'r-', linewidth=2)
axs[0].set_xticks(np.arange(0, 1.01, h))
axs[0].set_yticks(np.arange(0, 1.2, 1.0))
axs[0].set_ylim(-0.5, 1.5)
axs[0].grid(axis = 'y')
y = np.zeros((npts+1, nel)) # for 1st element
y[:,0] = (x[:,0] - x_c[0]) * (x[:,0] - x_c[2]) * (x[:,0] - x_c[3])/(2*h**3)
y[:,1] = (x[:,1] - x_c[0]) * (x[:,1] - x_c[2]) * (x[:,1] - x_c[3])/(2*h**3)
y[:,2] = (x[:,2] - x_c[2]) * (x[:,2] - x_c[3]) * (x[:,2] - x_c[4])/(-6*h**3)
for j in range(0,nel):
axs[1].plot(x[:,j], y[:,j],'r-', linewidth=2)
axs[1].set_xticks(np.arange(0, 1.01, h))
axs[1].set_yticks(np.arange(0, 1.2, 1.0))
axs[1].set_ylim(-0.5, 1.5)
axs[1].grid(axis = 'y')
plt.show()
最佳答案
设置 axs[0].grid(axis = 'y')
for 循环之外的其他轴设置似乎使它工作,只是在 Jupyter 笔记本中对其进行了测试,例如:
for j in range(0,nel):
axs[0].plot(x[:,j], y[:,j], 'r-', linewidth=2)
axs[0].set_xticks(np.arange(0, 1.01, h))
axs[0].set_yticks(np.arange(0, 1.2, 1.0))
axs[0].set_ylim(-0.5, 1.5)
axs[0].grid(axis = 'y')
关于python - 如何在matplotlib中显示Y轴的网格线,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63588175/
我是一名优秀的程序员,十分优秀!