You can get axes with g.ax_joint and from here your can set you axis attributes.
Solution 1: tick_params()
plt.figure(figsize=(10, 8))
g = sns.JointGrid(x="u", y="t", data=tdata)
g.plot(sns.scatterplot, sns.histplot)
g.ax_joint.tick_params(axis="x", rotation=90)
plt.show()
Solution 2: set_xticklabels()
plt.figure(figsize=(10, 8))
g = sns.JointGrid(x="u", y="

最低0.47元/天 解锁文章
675

被折叠的 条评论
为什么被折叠?



