wk934530 发表于 2021-4-28 22:13:05

如何将多个点同时映射到直线上

https://www.hualigs.cn/image/60896cf7c3637.jpg

wp231957 发表于 2021-4-29 07:04:34

这就一个图,谁知道你要干嘛呢

z5560636 发表于 2021-4-29 08:58:57

调整数据x 轴,y轴,即可映射到一条直线上。

阿奇_o 发表于 2021-4-29 11:37:52

仅供参考:
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]
查看完整版本: 如何将多个点同时映射到直线上