如何更改海运中的X轴范围
问题描述
默认情况下,海运会将X轴的位移范围从-5到35(以散点图表示)。但是我需要用1个单位显示X轴范围从1到30的散点图。我如何才能做到这一点?解决方案
要对这类绘图进行最灵活的控制,请创建您自己的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))
轻松执行更改大小等操作!
相关文章