最佳答案
我有一个存储在数字数组中的 x 和 y 点的范围。 Those represent x(t) and y(t) where t=0...T-1
我正在绘制一个散点图
import matplotlib.pyplot as plt
plt.scatter(x,y)
plt.show()
我希望有一个表示时间的颜色图(因此根据数字数组中的索引对点着色)
最简单的方法是什么?