построение гистограммы с matplotlib с питоном 3.7 - PullRequest
0 голосов
/ 24 августа 2018

Я построил гистограмму и хочу, чтобы на каждом столбце было имя студента.это мой код:

    import matplotlib.pyplot
    import numpy as np
    names=["avi","jose","bob","nick","zelda","mark"]
    pos=np.arange(6)+0.5
    matplotlib.pyplot.bar(pos,(4,8,12,3,17,6),align="center",color="red")
    matplotlib.pyplot.title("hight of students in unches",color="blue")
    matplotlib.pyplot.xlabel("hight in inches",color="red")
    matplotlib.pyplot.ylabel("students",color="red")
    matplotlib.pyplot.tick_params(axis="x",color="white")
    matplotlib.pyplot.tick_params(axis="y",color="white")
    matplotlib.pyplot.yticks(pos,(names))
    matplotlib.pyplot.show()

но я продолжаю получать имена на боковой стороне вместо бара enter image description here

спасибо за помощь:) |

1 Ответ

0 голосов
/ 24 августа 2018

Взяв пример кода из документов :

names=["avi","jose","bob","nick","zelda","mark"]
pos=np.arange(6)+0.5
bars = matplotlib.pyplot.bar(pos,(4,8,12,3,17,6),align="center",color="red")
matplotlib.pyplot.title("hight of students in unches",color="blue")
matplotlib.pyplot.xlabel("hight in inches",color="red")
matplotlib.pyplot.ylabel("students",color="red")

for i,bar in enumerate(bars):
    matplotlib.pyplot.text(bar.get_x() + bar.get_width()/2., 1.05*bar.get_height(),
                names[i],ha='center', va='bottom')

matplotlib.pyplot.tick_params(axis="x",color="white")
matplotlib.pyplot.tick_params(axis="y",color="white")
matplotlib.pyplot.show()

enter image description here

...