我正在尝试向此matplotlib
图中添加颜色图(下面的代码)。我使用颜色渐变来说明运动的时间或步长变化(色调是时间或n的函数)。现在,我想在图的插图中添加一个颜色图,但我无法成功。
import numpy as np
import matplotlib.pyplot as plt
%matplotlib inline
plt.style.use('ggplot')
n = 5000
x = np.cumsum(np.random.randn(n))
y = np.cumsum(np.random.randn(n))
# We add 10 intermediary points between two successive points. We
# interpolate x and y.
k = 10
x2 = np.interp(np.arange(n * k), np.arange(n) * k, x)
y2 = np.interp(np.arange(n * k), np.arange(n) * k, y)
fig, ax = plt.subplots(1, 1, figsize=(8, 8))
# Now, we draw our points with a gradient of colors.
ax.scatter(x2, y2, c=range(n * k), linewidths=0, marker='o', s=3,
cmap=plt.cm.jet,)
ax.axis('equal')
ax.set_axis_off()
我要寻找的是该图右侧的色条,比例尺从0到5000平均分配。