如何把sns.jointplot直方图变成平滑的kde?

How to make sns.jointplot histogram into a smooth kde?

我正在使用 sns.jointplot 绘制一些数据,我希望散点图中的数据保留为点,而侧面的直方图改为 kde 图。我试过使用 kind='kde' 参数,但这会将内部数据更改为不再像散点图中的点。我搜索了一下,找不到方法。

这是我的情节代码:

plota = sns.jointplot( data = Hub_all_data, y = "Within module degree", x= "Participation coefficient", s=100,  joint_kws=({'color':'green'}), marginal_kws=({'color': 'green'}))

plota.ax_joint.axvline(x=np.quantile(Pall,.25), color = "black", linestyle = "--")
plota.ax_joint.axvline(x=np.quantile(Pall,.75), color = "black", linestyle = "--")
plota.ax_joint.axhline(y=np.quantile(within_module_degree,.25), color = "black", linestyle = "--")
plota.ax_joint.axhline(y=np.quantile(within_module_degree,.75), color = "black", linestyle = "--")
plota.ax_marg_x.set_xlim(0, .6)
plota.ax_marg_y.set_ylim(-3, 2)
plota.set_axis_labels('P', 'Z', fontsize=16)

您可以创建一个 JointGrid,然后分别绘制中心图和边缘图:

import seaborn as sns
import numpy  as np

iris = sns.load_dataset('iris')
g = sns.JointGrid(data=iris, x="sepal_length", y="petal_length")
g.plot_joint(sns.scatterplot, s=100, color='green')
g.plot_marginals(sns.kdeplot, color='green', fill=True)

for q in np.quantile(iris['sepal_length'], [0.25, 0.75]):
     for ax in (g.ax_joint, g.ax_marg_x):
          ax.axvline(q, color="black", linestyle="--")
for q in np.quantile(iris['petal_length'], [0.25, 0.75]):
     for ax in (g.ax_joint, g.ax_marg_y):
          ax.axhline(q, color="black", linestyle="--")