I have an array of 90 000 pairs I want to plot with seaborn jointplot. Is there a way to adjust side histograms bin size? Should I try to plot it with an other package?
You should be able to use marginal_kws
to adjust the bins. Lifting the example from the seaborn documentation 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)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With