简体   繁体   English

如何在python中自动化imshow图

[英]How to automatize imshow plots in python

I want to automatize an imshow degrading figure with python3. 我想用python3自动化一个有影响力的表现。 I would like to give a data frame and this to be plot no matter how many columns are given. 我想给出一个数据框,无论给出多少列,这都是绘图。

I tried this: 我试过这个:

vmin = 3.5
vmax = 6
fig, axes = plt.subplots(len(list(df.columns)),1)

for i,j in zip(list(df.columns),range(1,len(list(df.columns))+1)):

    df = df.sort_values([i], ascending = False) 
    y = df[i].tolist()

    gradient = [y,y]

    plt.imshow(gradient, aspect='auto', cmap=plt.get_cmap('hot_r'), vmin=vmin, vmax=vmax)

    axes = plt.subplot(len(list(df.columns)),1,j)


sm = plt.cm.ScalarMappable(cmap=plt.get_cmap('hot_r'),norm=plt.Normalize(vmin,vmax))
sm._A = []
plt.colorbar(sm,ax=axes)

plt.show()

My problem is that the first set of data (first column of the df) is never showed. 我的问题是第一组数据(df的第一列)从未显示过。 Also the map is not where I want it to be. 地图也不是我想要的地方。 This is exactly what I get: 这正是我得到的:

我的实际输出

But this is what I want: 但这就是我想要的:

我想要的输出

You shouldn't use plt.subplot if you already have created your subplots via plt.subplots . 你不应该使用plt.subplot如果您已经通过创建您的次要情节plt.subplots

import numpy as np
import pandas as pd
import matplotlib.pyplot as plt

f = lambda x, s: x*np.exp(-x**2/s)/2
df = pd.DataFrame({"A" : f(np.linspace(0,50,600),70)+3.5,
                   "B" : f(np.linspace(0,50,600),110)+3.5,
                   "C" : f(np.linspace(0,50,600),150)+3.5,})

vmin = 3.5
vmax = 6

fig, axes = plt.subplots(len(list(df.columns)),1)

for col, ax in zip(df.columns,axes.flat):

    df = df.sort_values([col], ascending = False) 
    y = df[col].values

    gradient = [y,y]

    im = ax.imshow(gradient, aspect='auto', 
                   cmap=plt.get_cmap('hot_r'), vmin=vmin, vmax=vmax)

# Since all images have the same vmin/vmax, we can take any of them for the colorbar
fig.colorbar(im, ax=axes)

plt.show()

在此输入图像描述

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM