Извлечение точек построения из sns-графика - PullRequest
0 голосов
/ 18 июня 2020

У меня есть следующий график, как я могу извлекать точки построения

enter image description here

a=sns.kdeplot(df['ex'], label = " ")
a=sns.kdeplot(new_df['ex1], label = " ")

a=sns.kdeplot(df['ea'], label = " ")
a=sns.kdeplot(new_df['ea1'], label = " ")

Я пробовал следовать, не сработало

sns.distplot(a).get_lines()[0].get_data()
...