我有一个9万对的阵列,我想用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)