python – Bin大小的seaborn jointplot

我有一个9万对的阵列,我想用seaborn jointplot绘制.
有没有办法调整侧面直方图箱尺寸?
我应该尝试用其他包装绘图吗?python  –  Bin大小的seaborn jointplot

解决方法:

您应该能够使用marginal_kws来调整垃圾箱.从seaborn文档here中提取示例:

g = sns.jointplot("petal_length", "sepal_length", data=iris,
                   marginal_kws=dict(bins=15, rug=True),
                   annot_kws=dict(stat="r"),
                   s=40, edgecolor="w", linewidth=1)
上一篇:python – seaborn plot_marginals多个kdeplots


下一篇:python-扭曲的Web客户端可以通过SOCKS代理发出请求吗?