May you please help to remove the confidence interval in the seaborn pairplot.
import seaborn as sns
penguins = sns.load_dataset("penguins")
sns.pairplot(penguins,kind="reg")
I know it is possible in regplot or lmplot using ci=None, but I would like the same functionality in pairplot.
Thanks.