한 방향으로 3D 와이어프레임 플롯 #

rstride 또는 cstride를 0으로 설정하면 와이어가 해당 방향으로 생성되지 않음을 보여줍니다.

열(x) stride가 0으로 설정되고 행(y) stride가 0으로 설정됨
from mpl_toolkits.mplot3d import axes3d
import matplotlib.pyplot as plt


fig, (ax1, ax2) = plt.subplots(
    2, 1, figsize=(8, 12), subplot_kw={'projection': '3d'})

# Get the test data
X, Y, Z = axes3d.get_test_data(0.05)

# Give the first plot only wireframes of the type y = c
ax1.plot_wireframe(X, Y, Z, rstride=10, cstride=0)
ax1.set_title("Column (x) stride set to 0")

# Give the second plot only wireframes of the type x = c
ax2.plot_wireframe(X, Y, Z, rstride=0, cstride=10)
ax2.set_title("Row (y) stride set to 0")

plt.tight_layout()
plt.show()

스크립트의 총 실행 시간: (0분 1.478초)

Sphinx-Gallery에서 생성한 갤러리