
前言
本文目标在于利用
最近在处理某一组成绩数据的时候,涉及了柱状图的画法,因此此处进行一下记录。
加载库
import matplotlib.pyplot as plt
import matplotlib.font_manager as mfm
from matplotlib import style
style.use('ggplot') # 加载'ggplot'风格
# 加载中文字体
font_path = "/System/Library/Fonts/STHeiti Light.ttc" # 本地字体链接
prop = mfm.FontProperties(fname=font_path)
单一柱图
其中
total = [3, 5, 6, 7, 8, 6, 4, 3, 3, 22, 4, 8, 7, 13, 7, 7, 15, 10, 6, 52, 8, 2, 3, 26, 1, 1, 0, 2, 0, 3]