要对这类绘图进行最灵活的控制,请创建您自己的AXES对象,然后将海运绘图添加到其中。然后,您可以对x轴等功能执行标准matplotlib更改,或使用matplotlib API提供的任何普通控件。
测试于python 3.8.12
、matplotlib 3.4.3
、seaborn 0.11.2
import matplotlib.pyplot as plt
import seaborn as sns
data = [5,8,12,18,19,19.9,20.1,21,24,28]
fig, ax = plt.subplots()
sns.histplot(data, ax=ax) # distplot is deprecate and replaced by histplot
ax.set_xlim(1,31)
ax.set_xticks(range(1,32))
plt.show()
显示ax
和fig
对象后,您现在可以根据自己的喜好编辑图表,并使用fig.set_size_inches(10,8))
轻松执行更改大小等操作!
这篇关于如何更改海运中的X轴范围的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!