“Matplotlib Vertical Chicebels” Ответ

Matplotlib x вращение метки

plt.xticks(rotation=45)
Exuberant Eel

Вращать Xticks matplotlib

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

Matplotlib Vertical Chicebels

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

Ответы похожие на “Matplotlib Vertical Chicebels”

Вопросы похожие на “Matplotlib Vertical Chicebels”

Больше похожих ответов на “Matplotlib Vertical Chicebels” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования