How do you rotate the text along the x-axis to avoid unreadable text like the one above?
plt.figure(figsize = (10,8))
g = sns.JointGrid(x='u',y='t',data = tdata)
g.plot(sns.scatterplot, sns.histplot)
plt.show()
And plt.figure also can't work on JoinGrid,
