I'm using seaborn's displot to get stacked bar charts. Here is my code:
g = sns.displot(data=df, x='collection_year', hue='WB_Income group', multiple='stack',col="ena_species",col_wrap=6,facet_kws={'sharey': False, 'sharex': False})
How can I increase the width of the bars?

discrete=Trueor settingbins=to match the number of unique values in'year', which results in the x-ticks corresponding only to the values passed to the independent axis.python 3.10,pandas 1.4.3,matplotlib 3.5.1,seaborn 0.11.2Imports & Sample DataFrame
bins=160, which is 4x the number of years from 1985 - 2025.'year'data that's not apparent in the OP.binsto match the number of years in the data.bins, and settingdiscrete=True.binsto a number less than the number of unique values in'year'will produce a histogram where each bar encompasses multiple years.