请根据下面语言描述,画出图:import numpy as np import matplotlib.pyplot as plt # Generate double helix data t = np.linspace(0, 4 * np.pi, 400) x1 = np.cos(t) z = np.linspace(0, 1, 400) # vertical component for illustration x2 = np.cos(t + np.pi) # Create 2D projection with helix curves fig, ax = plt.subplots(figsize=(6, 8)) ax.plot(x1, z, label="技术治理", linewidth=3) ax.plot(x2, z, label="情感仪式", linewidth=3) ax.set_axis_off() ax.legend(loc='upper right') # Add annotations for stages stages = ["播种", "壮苗", "护航", "强师", "筑基", "聚力"] for i, stage in enumerate(stages): idx = int(i * (len(t)-1) / (len(stages) - 1)) ax.text(x1[idx] * 1.2, z[idx], stage, va='center') plt.title("双螺旋框架示意图", pad=20) plt.show()

视频信息