matplotlib作图X轴标签不能完全显示
如图:X标签值过长,旋转90°后标签值不完全显示
-----------Coding-----------
#标签值旋转90°
import matplotlib.pyplot as plt
plt.xticks(rotation=90);
#添加
plt.tight_layout() #xlable坐标轴显示不全
plt.show()
-----------Coding-----------
#标签值旋转90°
import matplotlib.pyplot as plt
plt.xticks(rotation=90);
#添加
plt.tight_layout() #xlable坐标轴显示不全
plt.show()
tight_layout()
函数后,X轴标签即可显示完全