Combining two heat maps in seaborn

后端 未结 2 1200
抹茶落季
抹茶落季 2021-02-09 05:27

I have 2 data tables with the dimensions 4x25. Each table is from a different point in time, but has exactly the same meta data, in essence the same column and row

相关标签:
2条回答
  • 2021-02-09 06:14

    One possible way of showing two seaborn heatmaps side by side in a figure would be to plot them to individual subplots. One may set the space between the subplots to very small (wspace=0.01) and position the respective colorbars and ticklabels outside of that gap.

    import matplotlib.pyplot as plt
    import numpy as np
    import pandas as pd
    import seaborn as sns
    
    df =  pd.DataFrame(np.random.rand(25,4), columns=list("ABCD"))
    df2 = pd.DataFrame(np.random.rand(25,4), columns=list("WXYZ"))
    
    fig, (ax,ax2) = plt.subplots(ncols=2)
    fig.subplots_adjust(wspace=0.01)
    sns.heatmap(df, cmap="rocket", ax=ax, cbar=False)
    fig.colorbar(ax.collections[0], ax=ax,location="left", use_gridspec=False, pad=0.2)
    sns.heatmap(df2, cmap="icefire", ax=ax2, cbar=False)
    fig.colorbar(ax2.collections[0], ax=ax2,location="right", use_gridspec=False, pad=0.2)
    ax2.yaxis.tick_right()
    ax2.tick_params(rotation=0)
    plt.show()
    

    0 讨论(0)
  • 2021-02-09 06:19

    The best part about matplotlib/seaborn libraries is that everything is plotted in the same figure until you clear it. You can use the mask argument in sns.heatmap to get a diagonal heatmap plot. To get a "mixed" heatmap, such that you can have two different types of data plotted with different colormaps, you can do something like this:

    from sklearn.datasets import load_iris
    import seaborn as sns
    import pandas as pd
    import numpy as np
    
    data = load_iris()
    df= pd.DataFrame(data.data,columns = data.feature_names)
    df['target'] = data.target
    
    df_0 = df[df['target']==0]
    df_1 = df[df['target']==1]
    
    df_0.drop('target',axis=1,inplace=True)
    df_1.drop('target',axis=1,inplace=True)
    
    matrix_0 = np.triu(df_0.corr())
    matrix_1 = np.tril(df_1.corr())
    
    import seaborn as sns
    from mpl_toolkits.axes_grid1.axes_divider import make_axes_locatable
    from mpl_toolkits.axes_grid1.colorbar import colorbar
    sns.heatmap(df_0.corr(),annot=True,mask=matrix_0,cmap="BuPu")
    sns.heatmap(df_1.corr(),annot=True,mask=matrix_1,cmap="YlGnBu")
    

    Hope this is what your second idea was. Note that this will only work when you have same column names.

    0 讨论(0)
提交回复
热议问题