matplotlib draws a histogram and adds values to the graph

For matplotlib drawing details, please refer to the previous article:
https://blog.csdn.net/qq_52109814/article/details/121901438?spm=1001.2014.3001.5501

from matplotlib import pyplot as plt
import numpy as np

#编辑图例
def autolabel(rects):
    for rect in rects:
        height = rect.get_height()
        #设置图例字体、位置、数值等等
        plt.text(rect.get_x(), 1.01*height, '%s' %
                 float(height), size=11, family="Times new roman")

y = ['A', 'B', 'C', 'D', 'E', 'F']
x = [6.624, 7.394, 14.972, 17.545, 21.239, 16.736]
rect = plt.bar(y, x, width=0.5)
autolabel(rect)
plt.title("Overall Value S")
plt.xlabel("Area")
plt.ylabel("Variance")
plt.legend()

plt.show()

Run example:
Please add a picture description

Guess you like

Origin blog.csdn.net/qq_52109814/article/details/125573783