I'm looking to plot per year the distribution of sunshine depending on the season with seaborn.
sns.displot(x = 'Sunshine', data = dviz, kind ='kde', hue = 'season', col = 'year')
And the displot returned are :
Columns 'year' contains year from 2009 to 2020 and I want to plot only for last 5 years ( 2016, 2017, 2018, 2019, 2020).
This is corresponding to the last five plot
Do yo know how to select the values that I want for the col?
Thank you !

