我想用 matplotlib 或 searborn 创建一个 fiddle 图,其中根据颜色图对图进行着色。

这就是我得到的:

python - 带有颜色图的 matplotlib/seaborn  fiddle 图-LMLPHP

这就是我想要的(我在这里使用了 Photoshop):
python - 带有颜色图的 matplotlib/seaborn  fiddle 图-LMLPHP

我怎样才能获得所需的情节?

最佳答案

我认为这样做会更好,但是,根据@ImportanceOfBeingErnest 的评论,我想这实际上是要走的路:

from matplotlib.path import Path
from matplotlib.patches import PathPatch
from mpl_toolkits.axes_grid1.axes_divider import make_axes_locatable


x = [np.random.normal(loc=i, scale=1, size=(100,)) for i in range(5)]

fig, ax = plt.subplots()
violins = ax.violinplot(x)

ymin, ymax = ax.get_ylim()
xmin, xmax = ax.get_xlim()

# create a numpy image to use as a gradient
Nx,Ny=1,1000
imgArr = np.tile(np.linspace(0,1,Ny), (Nx,1)).T
cmap = 'hsv'

for violin in violins['bodies']:
    path = Path(violin.get_paths()[0].vertices)
    patch = PathPatch(path, facecolor='none', edgecolor='none')
    ax.add_patch(patch)
    img = ax.imshow(imgArr, origin="lower", extent=[xmin,xmax,ymin,ymax], aspect="auto",
                    cmap=cmap,
                    clip_path=patch)

# colorbar
ax_divider = make_axes_locatable(ax)
cax = ax_divider.append_axes("right", size="5%", pad="2%")
norm = matplotlib.colors.Normalize(vmin=ymin, vmax=ymax)
cb = matplotlib.colorbar.ColorbarBase(cax, cmap=matplotlib.cm.get_cmap(cmap),
                                norm=norm,
                                orientation='vertical')

python - 带有颜色图的 matplotlib/seaborn  fiddle 图-LMLPHP

关于python - 带有颜色图的 matplotlib/seaborn fiddle 图,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/57323884/

10-15 23:30