Как повернуть заголовки осей в matplotlib? - PullRequest
0 голосов
/ 14 февраля 2020

Я не могу повернуть имена по осям y и x так, чтобы они перекрывали друг друга. Что я делаю не так?

yticks / xticks (вращение = 90) также не корректирует имена, чтобы предотвратить их наложение.

name = 'Anne Frank Diary'
df4 = df.loc[ my_list, my_list ].copy()
axes = pd.plotting.scatter_matrix(df4, figsize=(15, 15), marker='o',hist_kwds={'bins': 20}, s=60, alpha=.8)
corr = df4.corr().values 
for i, j in zip(*plt.np.triu_indices_from(axes, k=1)):
    axes[i, j].annotate("%.3f" %corr[i,j], (0.8, 0.8), xycoords='axes fraction', ha='left', va='center',rotation=90)
sst="%s \n Scatter Matrix of Centrality Indices \n (displaying Pearson correlation coefficients)" %name
plt.suptitle(sst,fontsize=20);

enter image description here

Обновление: https://github.com/markamcgown/Projects/blob/master/df.csv my_list = ['Kugler', 'Margot', 'Anne', 'Pirn', 'Kleiman', 'German', 'Dutch', 'Dussel ',' Приложение ',' Питер ',' Китти ',' Bep ',' Mouschi ',' Briti sh ',' Miep ',' van D. ']

1 Ответ

0 голосов
/ 14 февраля 2020
n = len(G.nodes)

for x in range(n):
    for y in range(n):
        # to get the axis of subplots
        ax = axes[x, y]
        # to make x axis name vertical  
        ax.xaxis.label.set_rotation(90)
        # to make y axis name horizontal 
        ax.yaxis.label.set_rotation(0)
        # to make sure y axis names are outside the plot area
        ax.yaxis.labelpad = 10
``
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...