在具有Seaborn的散点图的x轴上显示索引标签

问题描述 投票:1回答:2

我与Seaborn创建了一个散点图,我在想,如果我能在x轴上显示观察值的索引标签(旋转90度),这将有助于读者理解该图。但是我不知道该怎么做。

我的数据:

                      Response8  Nulls_prevalence
Employment_Info_1     0.001348              0.00
Employment_Info_4    -0.000049              0.11
Medical_History_1     0.078445              0.15
Employment_Info_6     0.003095              0.18
Family_Hist_4        -0.119424              0.32
Insurance_History_5  -0.003648              0.43
Family_Hist_2        -0.004765              0.48
Family_Hist_3        -0.003509              0.58
Family_Hist_5        -0.003889              0.70
Medical_History_15    0.263364              0.75
Medical_History_24    0.112906              0.94
Medical_History_32    0.485493              0.98
Medical_History_10    0.203842              0.99

我的代码:

import pandas as pd
import seaborn as sns

sns.regplot(x = 'Nulls_prevalence', y='Response8' , data = plot_data8, fit_reg=False)

plt.title('Response8:  Nulls_prevalence of Predictors vs. Correlation with Target')

plt.xlabel('Nulls Prevalence of Predictor')

plt.ylabel('Correlation of Predictor with Target')

plt.tight_layout()

plt.show()

输出:

enter image description here

[我试了一下,但我无法使所有索引标签都出现(在x轴上只出现了一个子集。)

python label seaborn
2个回答
0
投票

我认为您要问的是Seaborn的rugplot功能的功能。

import pandas as pd
import seaborn as sns

ax = sns.regplot(x = 'Nulls_prevalence', y='Response8' , data = plot_data8, fit_reg=False)

sns.rugplot(plot_data8['Nulls_prevalence'], ax=ax) # Don't forget to pass the axis from regplot

plt.title('Response8:  Nulls_prevalence of Predictors vs. Correlation with Target')

plt.xlabel('Nulls Prevalence of Predictor')

plt.ylabel('Correlation of Predictor with Target')

plt.tight_layout()

plt.show()

0
投票

我认为您需要plt.xticks

import pandas as pd
import seaborn as sns

plt.figure(figsize=(15,8)
sns.regplot(x = 'Nulls_prevalence', y='Response8' , data = plot_data8, fit_reg=False)

plt.title('Response8:  Nulls_prevalence of Predictors vs. Correlation with Target')

plt.xlabel('Nulls Prevalence of Predictor')

plt.ylabel('Correlation of Predictor with Target')

plt.tight_layout()

#plt.xticks line
plt.xticks(plot_data8['Nulls_prevalence'], rotation=90)

plt.show()

输出:

enter image description here

© www.soinside.com 2019 - 2024. All rights reserved.