简体   繁体   中英

How to remove the background behind the lines in seaborn

how can I remove the background behind my lineplot in seaborn. Thank you. 在此处输入图像描述

As per the official documentation of seaborn.lineplot , you can set ci to None .

ci: int or “sd” or None
Size of the confidence interval to draw when aggregating with an estimator. “sd” means to draw the standard deviation of the data. Setting to None will skip bootstrapping.

sns.lineplot(..., ci=None)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM