python中的彩色编码行

时间:2016-10-22 18:53:48

标签: python matplotlib

我想在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) 

我得到了这个情节: enter image description here

我想要相同的情节,但要有直线而不是点,并且要用颜色编码的线作为上图中的点。我怎么能这样做?

0 个答案:

没有答案