matplotlib 纵坐标轴显示数据值的实例

作者:dongyuguoai 时间:2021-10-02 12:55:43 

实例如下所示:


import matplotlib as mt
import numpy as np
y=[7,0,0,0,0,0,1,25,98,333,471,0,322,429,425,478,385,237,219,284,351,364,165,0]
x=[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24]
x1=np.asanyarray(x)
y1=np.asanyarray(y)

import matplotlib.pyplot as plt

fig=plt.figure()

ax1=fig.add_subplot(1,1,1)
ax1.bar(x1,y1)
ax1.yaxis.set_ticks(y1) #设置y轴刻度为y值
plt.show()

参考文献:matplotlib官网的docs

来源:https://blog.csdn.net/dongyuguoai/article/details/69814884

标签:matplotlib,坐标轴,数据值
0
投稿

猜你喜欢

  • asp,php 和 jsp 比较 之我见

    2007-08-10 13:35:00
  • Python Django教程之模型中字段验证详解

    2021-01-04 18:56:48
  • Django drf请求模块源码解析

    2023-06-07 10:03:07
  • 使用Pycharm(Python工具)新建项目及创建Python文件的教程

    2022-06-07 11:43:52
  • Python中self用法实例详解

    2022-12-18 08:27:48
  • JS循环中正确使用async、await的姿势分享

    2024-05-25 15:18:56
  • PHP PDOStatement::fetchColumn讲解

    2023-06-06 09:17:20
  • thinkPHP5.0框架简单配置作用域的方法

    2023-11-14 10:24:51
  • python数据类型_元组、字典常用操作方法(介绍)

    2021-06-22 14:06:05
  • 浅析php header 跳转

    2023-10-15 04:18:34
  • python3中calendar返回某一时间点实例讲解

    2022-07-24 02:56:16
  • Django扫码抽奖平台的配置过程详解

    2021-11-25 22:54:09
  • Python随机生成数模块random使用实例

    2022-08-04 21:04:48
  • python一行sql太长折成多行并且有多个参数的方法

    2022-06-21 03:47:04
  • sql查询点滴记录

    2012-01-05 19:07:49
  • Python绘制计算机CPU占有率变化的折线图

    2021-08-11 05:50:37
  • Python Flask RESTful使用demo演示

    2023-08-04 07:02:23
  • Go中如何使用set的方法示例

    2024-04-28 10:47:19
  • 用Python制作简单的钢琴程序的教程

    2022-08-20 07:18:49
  • jupyter notebook快速入门及使用详解

    2023-07-17 07:48:57
  • asp之家 网络编程 m.aspxhome.com