If I already make a plot, how to get axis limit from the existing plot so I can make some change for example, increase max limit by 10% etc?
for example, if I use seaborn lmplot and regplot like below. Thanks
sns.lmplot(x=x,y=y,data=data,fit_reg=False,legend=False,height=8, aspect=1.7, scatter_kws={"s": 200})
g=sns.regplot(x=x,y=y,data=data,ci=ci,scatter_kws={"s": 200,'alpha':0.1},
line_kws={'color':'green'})
Thanks