python 数据分析 条形图

# -*- coding: utf-8 -*- from __future__ import unicode_literals import matplotlib.pyplot as mp import numpy as np n = 12 x = np.arange(n) y1 = np.random.uniform(0.5, 1.0, n) * (1 - x / n) y2 = np.ra
相关文章
相关标签/搜索