[Python][数据分析]柱状图的使用示例
柱状图的使用示例
示图:
# 绘制柱状图.py
import numpy as np
import matplotlib.pyplot as mp
apple = [23,18,19,20,30,17,18,25,18,19,22,17]
oranges = [19,28,39,30,50,67,28,35,48,69,72,27]
mp.figure('Bar',facecolor='l...
原创
2020-01-20 10:20:05 ·
356 阅读 ·
0 评论