【问题标题】:Seaborn: Subplot of jointplots doesn't work [duplicate]Seaborn:联合图的子图不起作用[重复]
【发布时间】:2021-11-04 01:48:41
【问题描述】:

我想创建一个子图,其中两个不同的联合图水平合并,因此我使用了plt.subplots(1, 2)

但是,结果有两个问题:

  1. 由于未知原因,顶部出现了两个不必要的空白图,我想将其删除。
  2. 绘图当前是垂直合并,而不是水平合并。

如何修改我的代码来修复它?提前致谢!

import seaborn as sns
import numpy as np

sns.set(style="darkgrid")
iris = sns.load_dataset("iris")

fig, axes = plt.subplots(1, 2)
g = sns.jointplot(ax = axes[0], x="sepal_width", y="sepal_length", data=iris, kind="reg", color='k')
g.ax_joint.cla()
sns.scatterplot(data=iris, x='sepal_width', y='sepal_length', size='petal_length', sizes=(10, 200), ax=g.ax_joint)

g = sns.jointplot(ax = axes[1], x="sepal_width", y="sepal_length", data=iris, kind="reg", color='k')
g.ax_joint.cla()
sns.scatterplot(data=iris, x='sepal_width', y='sepal_length', size='petal_width', sizes=(10, 200), ax=g.ax_joint)

【问题讨论】:

标签: python dataframe plot graph seaborn


【解决方案1】:

根据您的问题,我能够首先使用联合图创建每个图表。我做了很多研究,把它变成了一个子图,并在这里找到了一个鼓舞人心的answer,我应用了它。它出色地解决了您的问题。谢谢! @ImportanceOfBeingErnest

import seaborn as sns
import matplotlib.pyplot as plt
import matplotlib.gridspec as gridspec

class SeabornFig2Grid():

    def __init__(self, seaborngrid, fig,  subplot_spec):
        self.fig = fig
        self.sg = seaborngrid
        self.subplot = subplot_spec
        if isinstance(self.sg, sns.axisgrid.FacetGrid) or \
            isinstance(self.sg, sns.axisgrid.PairGrid):
            self._movegrid()
        elif isinstance(self.sg, sns.axisgrid.JointGrid):
            self._movejointgrid()
        self._finalize()

    def _movegrid(self):
        """ Move PairGrid or Facetgrid """
        self._resize()
        n = self.sg.axes.shape[0]
        m = self.sg.axes.shape[1]
        self.subgrid = gridspec.GridSpecFromSubplotSpec(n,m, subplot_spec=self.subplot)
        for i in range(n):
            for j in range(m):
                self._moveaxes(self.sg.axes[i,j], self.subgrid[i,j])

    def _movejointgrid(self):
        """ Move Jointgrid """
        h= self.sg.ax_joint.get_position().height
        h2= self.sg.ax_marg_x.get_position().height
        r = int(np.round(h/h2))
        self._resize()
        self.subgrid = gridspec.GridSpecFromSubplotSpec(r+1,r+1, subplot_spec=self.subplot)

        self._moveaxes(self.sg.ax_joint, self.subgrid[1:, :-1])
        self._moveaxes(self.sg.ax_marg_x, self.subgrid[0, :-1])
        self._moveaxes(self.sg.ax_marg_y, self.subgrid[1:, -1])

    def _moveaxes(self, ax, gs):
        #https://stackoverflow.com/a/46906599/4124317
        ax.remove()
        ax.figure=self.fig
        self.fig.axes.append(ax)
        self.fig.add_axes(ax)
        ax._subplotspec = gs
        ax.set_position(gs.get_position(self.fig))
        ax.set_subplotspec(gs)

    def _finalize(self):
        plt.close(self.sg.fig)
        self.fig.canvas.mpl_connect("resize_event", self._resize)
        self.fig.canvas.draw()

    def _resize(self, evt=None):
        self.sg.fig.set_size_inches(self.fig.get_size_inches())
        
sns.set(style="darkgrid")
iris = sns.load_dataset("iris")

g0 = sns.JointGrid(x="sepal_width", y="sepal_length", data=iris)
g0.plot_joint(sns.scatterplot, sizes=(10, 200), size=iris['petal_length'], legend='brief')
g0.plot_marginals(sns.histplot, kde=True, color='k')

g1 = sns.JointGrid(x="sepal_width", y="sepal_length", data=iris)
g1.plot_joint(sns.scatterplot, sizes=(10, 200), size=iris['petal_width'], legend='brief')
g1.plot_marginals(sns.histplot, kde=True, color='k')


fig = plt.figure(figsize=(13,8))
gs = gridspec.GridSpec(1, 2)

mg0 = SeabornFig2Grid(g0, fig, gs[0])
mg1 = SeabornFig2Grid(g1, fig, gs[1])

gs.tight_layout(fig)

plt.show()

【讨论】:

  • 它被标记为重复,但我可以接受 Tawashi 的回答。请投票给 ImportanceOfBeggingErnest,他从根本上解决了您的问题。
猜你喜欢
  • 2020-11-28
  • 1970-01-01
  • 2016-03-09
  • 2016-05-04
  • 1970-01-01
  • 2018-01-15
  • 1970-01-01
  • 2021-11-26
  • 1970-01-01
相关资源
最近更新 更多