I am trying to draw jointplot with seaborn but I am not able to do the following:
Change the scale to log-scale (similar to the way to do this in matplotlib
ax.set_yscale('log')
) on both axes of the marginal histograms.Display the vertical scale on both of the marginal histograms.
I attempted to do the following for point 2 above but it doesn't display vertical scale:
my_plot = sns.jointplot(x='x_axis', y='y_axis', data=my_df)
my_plot.fig.set_figwidth(19)
my_plot.fig.set_figheight(3)
for tick in my_plot.ax_marg_x.get_yticklabels():
tick.set_visible(True)
plt.show()
For point 1, I don't really how to attempt it.
Thank you so much for your help in advance.