Can I retrieve the bandwidth used in a seaborn kdeplot?
问题 I am using sns.kdeplot(data) to obtain a Kernel Density Estimate for my 1 dimensional dataset. As I understand and having read seaborn's documentation on kdeplot, sns.kdeplot() passes bw_method="Scott" to scipy.stats.gaussian_kde to automatically obtain a rule-based bandwidth to smoothening the kde plot in question. Can I access the bandwidth that was automatically used by seaborn for its kdeplot? My idea was to reproduce seaborn's steps through scipy.stats.gaussian_kde and applying the rule