“Matplotlib vertical tick rótulos” Respostas de código

rotação da etiqueta Matplotlib x

plt.xticks(rotation=45)
Exuberant Eel

gire o Xticks matplotlib

# rotate xticks of a plot Matplotlib
angle = 90
plt.xticks(rotation=angle)
Poised Pygmy

Matplotlib vertical tick rótulos

import matplotlib.pyplot as plt

x = range(6)
y = [-3, -2, -1, 1, 2, 3]
xlabels = [f'label {i}' for i in x]

fig, ax = plt.subplots()
ax.bar(x, y)

# ha='***' is not enough to visually align labels with ticks 
# use both ha='***' and rotation_mode='anchor'
ax.set_xticks(x, xlabels, rotation=45, ha='right', rotation_mode='anchor')

plt.show()
Arthur Elskens

Respostas semelhantes a “Matplotlib vertical tick rótulos”

Perguntas semelhantes a “Matplotlib vertical tick rótulos”

Mais respostas relacionadas para “Matplotlib vertical tick rótulos” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código