如何将多个点同时映射到直线上
https://www.hualigs.cn/image/60896cf7c3637.jpg 这就一个图,谁知道你要干嘛呢 调整数据x 轴,y轴,即可映射到一条直线上。 仅供参考:import matplotlib.pyplot as plt
y=
plt.plot(y)
plt.annotate('point me', xy=(1, 0.6), xytext=(0.86, 0.8),
arrowprops=dict(arrowstyle="-"),
)
plt.show()
页:
[1]