matplotlib
python的matplotlib
「已注销」
这个作者很懒,什么都没留下…
展开
-
matplotlib-04-绘制直方图
基本演示 和折现图相似 折线图 使用plt.hist(a, num_bin)绘制直方图 num_bin是组数 原始数据可以绘制直方图,如果初步统计了可以绘制为条形图 from matplotlib import pyplot as plt # 中文 import matplotlib font = {'family': 'MicroSoft Yahei', 'weight': 'bold', 'size': '10'} matplotlib.rc('font', **fo原创 2021-01-05 23:03:11 · 103 阅读 · 0 评论 -
matplotlib-03-绘制条形图
基本演示 和折现图相似 折线图 使用 plt.bar(range(len(x)), y, width=0.3, color="green")绘制竖着的条形图 使用plt.barh(range(len(x)), y, height=0.3)绘制横着的条形图 from matplotlib import pyplot as plt # 中文 import matplotlib font = {'family': 'MicroSoft Yahei', # 'weight': 'bold',原创 2021-01-05 23:01:58 · 111 阅读 · 0 评论 -
matplotlib-02-绘制散点图
title: matplotlib_02_绘制散点图 date: 2021-01-04 21:32:39 categories: matplotlib tags: 基本演示 与折线图一样的 折线图 使用 plot.scatter(x, y) from matplotlib import pyplot as plt import matplotlib font = {'family': 'MicroSoft Yahei', 'weight': 'bold', 's.原创 2021-01-05 23:01:06 · 92 阅读 · 0 评论 -
matplotlib-01-绘制折线图
title: matplotlib_01_绘制折线图 date: 2021-01-04 21:21:43 categories: matplotlib tags: matplotlib: 最流行的Python底层绘图库,主要做数据可视化图表,名字取材于MATLAB,模仿MATLAB构建 基本演示 from matplotlib import pyplot as plt # 设置图片大小 # figsize 是图片大小、dpi是清晰程度 fig = plt.figure(figsize=(20, 8.原创 2021-01-05 23:00:21 · 139 阅读 · 0 评论