Mover el eje x a la parte superior de una gráfica en matplotlib

111

Residencia en esta pregunta sobre mapas de calor en matplotlib , quería mover los títulos del eje x a la parte superior de la gráfica.

import matplotlib.pyplot as plt
import numpy as np
column_labels = list('ABCD')
row_labels = list('WXYZ')
data = np.random.rand(4,4)
fig, ax = plt.subplots()
heatmap = ax.pcolor(data, cmap=plt.cm.Blues)

# put the major ticks at the middle of each cell
ax.set_xticks(np.arange(data.shape[0])+0.5, minor=False)
ax.set_yticks(np.arange(data.shape[1])+0.5, minor=False)

# want a more natural, table-like display
ax.invert_yaxis()
ax.xaxis.set_label_position('top') # <-- This doesn't work!

ax.set_xticklabels(row_labels, minor=False)
ax.set_yticklabels(column_labels, minor=False)
plt.show()

Sin embargo, llamar a set_label_position de matplotlib (como se arriba) no parece tener el efecto deseado. Aquí está mi salida:

ingrese la descripción de la imagen aquí

¿Qué estoy haciendo mal?

Jason Sundram
fuente

Respuestas:

152

Utilizar

ax.xaxis.tick_top()

para colocar las marcas de graduación en la parte superior de la imagen. El comando

ax.set_xlabel('X LABEL')    
ax.xaxis.set_label_position('top') 

afecta la etiqueta, no las marcas de verificación.

import matplotlib.pyplot as plt
import numpy as np
column_labels = list('ABCD')
row_labels = list('WXYZ')
data = np.random.rand(4, 4)
fig, ax = plt.subplots()
heatmap = ax.pcolor(data, cmap=plt.cm.Blues)

# put the major ticks at the middle of each cell
ax.set_xticks(np.arange(data.shape[1]) + 0.5, minor=False)
ax.set_yticks(np.arange(data.shape[0]) + 0.5, minor=False)

# want a more natural, table-like display
ax.invert_yaxis()
ax.xaxis.tick_top()

ax.set_xticklabels(column_labels, minor=False)
ax.set_yticklabels(row_labels, minor=False)
plt.show()

ingrese la descripción de la imagen aquí

unutbu
fuente
¿podría decirme cómo poner el eje X entre B y C? Lo intenté todo el día pero no
tuve
33

Quieres en set_ticks_positionlugar de set_label_position:

ax.xaxis.set_ticks_position('top') # the rest is the same

Esto me da:

ingrese la descripción de la imagen aquí

Lev Levitsky
fuente
¿podría decirme cómo poner el eje X entre B y C? Lo intenté todo el día pero no
tuve
16

tick_params es muy útil para establecer propiedades de tick. Las etiquetas se pueden mover hacia arriba con:

    ax.tick_params(labelbottom=False,labeltop=True)
wSmit
fuente
Los kwargs son booleanos, por lo que deberían serlo Falsey Truerespectivamente; de ​​lo contrario, ¡funciona perfectamente!
Milo Wielondek
1

Tienes que hacer un masaje adicional si quieres que las garrapatas (no las etiquetas) aparezcan en la parte superior e inferior (no solo en la parte superior). La única forma en que podría hacer esto es con un cambio menor en el código de unutbu:

import matplotlib.pyplot as plt
import numpy as np
column_labels = list('ABCD')
row_labels = list('WXYZ')
data = np.random.rand(4, 4)
fig, ax = plt.subplots()
heatmap = ax.pcolor(data, cmap=plt.cm.Blues)

# put the major ticks at the middle of each cell
ax.set_xticks(np.arange(data.shape[1]) + 0.5, minor=False)
ax.set_yticks(np.arange(data.shape[0]) + 0.5, minor=False)

# want a more natural, table-like display
ax.invert_yaxis()
ax.xaxis.tick_top()
ax.xaxis.set_ticks_position('both') # THIS IS THE ONLY CHANGE

ax.set_xticklabels(column_labels, minor=False)
ax.set_yticklabels(row_labels, minor=False)
plt.show()

Salida:

ingrese la descripción de la imagen aquí

usuario1420304
fuente
¿podría decirme cómo poner el eje X entre B y C? Lo intenté todo el día pero no
tuve