When plotting a single xarray I can use something like: ds['variable'][::5,::5].plot() to reduce the lat and lon resolution by a factor of 5. Is there a similar way to reduce the resolution when using facet grids?
e.g., I'm currently plotting: WL_monthly.plot(x='lon',y='lat',col='time',col_wrap=4)
but due to the high resoultion of the data it takes a couple of minutes to plot.
I tried: WL_monthly[::5,::5].plot(x='lon',y='lat',col='time',col_wrap=4)
but this slices the array's time entries.