带有线条颜色渐变和颜色条的python matplotlib

带有线条颜色渐变和颜色条的python matplotlib,python,matplotlib,Python,Matplotlib,我一直在玩弄这个问题,接近我想要的,但错过了额外的一两行 基本上,我想画一条线,给定第三个数组的值,它的颜色会发生变化。潜伏在周围,我发现这很有效(尽管相当缓慢),并代表了问题 import numpy as np import matplotlib.pyplot as plt c = np.arange(1,100) x = np.arange(1,100) y = np.arange(1,100) cm = plt.get_cmap('hsv') fig = plt.figure(fig

我一直在玩弄这个问题,接近我想要的,但错过了额外的一两行

基本上,我想画一条线,给定第三个数组的值,它的颜色会发生变化。潜伏在周围,我发现这很有效(尽管相当缓慢),并代表了问题

import numpy as np
import matplotlib.pyplot as plt
c = np.arange(1,100)
x = np.arange(1,100)
y = np.arange(1,100)

cm = plt.get_cmap('hsv')

fig = plt.figure(figsize=(5,5))
ax1 = plt.subplot(111)

no_points = len(c)
ax1.set_color_cycle([cm(1.*i/(no_points-1)) 
                     for i in range(no_points-1)])

for i in range(no_points-1):
    bar = ax1.plot(x[i:i+2],y[i:i+2])
plt.show()
这就给了我:

我想能够包括一个色条与此绘图。到目前为止,我还没能破解它。可能会有其他行包含在不同的x,y中,但是相同的c中,所以我认为规范化对象是正确的路径

更大的画面是,该绘图是2x2子绘图网格的一部分。我已经在使用matplotlib.colorbar.make_axes(ax4)为颜色栏轴对象留出空间,其中ax4带有第4个子批次

查看和中的:


请注意,调用
plt.plot
数百次往往会降低性能。
使用
LineCollection
构建多色线段的速度要快得多。

请参见此处的第二个示例:您应该使用
LineCollection
,它是
ScalarMappable
子类,因此您可以将艺术家传递到
fig.colorbar()
以获取颜色条。我还打算在中粘贴答案,相反,我只会向上投票:-pGreat!谢谢你,这正是我想要的!和往常一样,unutbu的回答非常好。有人会认为使用一些默认的matplotlib参数应该更容易做到这一点?(一个图形中有两行,每行有不同的颜色)
import numpy as np
import matplotlib.pyplot as plt
import matplotlib.collections as mcoll

def multicolored_lines():
    """
    http://nbviewer.ipython.org/github/dpsanders/matplotlib-examples/blob/master/colorline.ipynb
    http://matplotlib.org/examples/pylab_examples/multicolored_line.html
    """

    x = np.linspace(0, 4. * np.pi, 100)
    y = np.sin(x)
    fig, ax = plt.subplots()
    lc = colorline(x, y, cmap='hsv')
    plt.colorbar(lc)
    plt.xlim(x.min(), x.max())
    plt.ylim(-1.0, 1.0)
    plt.show()

def colorline(
        x, y, z=None, cmap='copper', norm=plt.Normalize(0.0, 1.0),
        linewidth=3, alpha=1.0):
    """
    http://nbviewer.ipython.org/github/dpsanders/matplotlib-examples/blob/master/colorline.ipynb
    http://matplotlib.org/examples/pylab_examples/multicolored_line.html
    Plot a colored line with coordinates x and y
    Optionally specify colors in the array z
    Optionally specify a colormap, a norm function and a line width
    """

    # Default colors equally spaced on [0,1]:
    if z is None:
        z = np.linspace(0.0, 1.0, len(x))

    # Special case if a single number:
    # to check for numerical input -- this is a hack
    if not hasattr(z, "__iter__"):
        z = np.array([z])

    z = np.asarray(z)

    segments = make_segments(x, y)
    lc = mcoll.LineCollection(segments, array=z, cmap=cmap, norm=norm,
                              linewidth=linewidth, alpha=alpha)

    ax = plt.gca()
    ax.add_collection(lc)

    return lc

def make_segments(x, y):
    """
    Create list of line segments from x and y coordinates, in the correct format
    for LineCollection: an array of the form numlines x (points per line) x 2 (x
    and y) array
    """

    points = np.array([x, y]).T.reshape(-1, 1, 2)
    segments = np.concatenate([points[:-1], points[1:]], axis=1)
    return segments

multicolored_lines()