From How to set some xlim and ylim in Seaborn lmplot facetgrid I've find out that you can specify xlim by using
g = sns.relplot(data=df_weekday,
x="date", y="battery/min", kind="scatter", hue="version")
g.set(xlim=('2019-07-16','2019-11-06'))
This works perfectly however can I add more parameters inside,
instead of calling plt.xticks(rotation=90) and other controls on each line I want to include all inside g.set().
Furthermore when I try to spread my graph by setting height=10, aspect=2
however it makes all the fonts too small and having graph without height, aspect makes my graph too squished.
I want to add height, aspect and change all fonts also inside g.set() if possible.