我想在python中制作一个颜色编码的图,但是用线而不是点。我使用matplotlib以及其他代码行:
color_scheme = plt.get_cmap('spectral')
fig = plt.figure(figsize=(12,10))
gs = gridspec.GridSpec(1, 1)
ax1 = plt.subplot(gs[0])
im1 = ax1.scatter(bin_x, bin_y, c=red, edgecolors='black', marker='o', s=60, lw=1, cmap=color_scheme, vmin=0, vmax=10,zorder=1)
我想要相同的情节,但要有直线而不是点,并且要用颜色编码的线作为上图中的点。我怎么能这样做?