一、用默认设置绘制折线图

  import matplotlib.pyplot as plt

  x_values=list(range(11))

  #x轴的数字是0到10这11个整数

  y_values=[x**2 for x in x_values]

  #y轴的数字是x轴数字的平方

  plt.plot(x_values,y_values,c='green')

  #用plot函数绘制折线图,线条颜色设置为绿色

  plt.title('Squares',fontsize=24)

  #设置图表标题和标题字号

  plt.tick_params(axis='both',which='major',labelsize=14)

  #设置刻度的字号

  plt.xlabel('Numbers',fontsize=14)

  #设置x轴标签及其字号

  plt.ylabel('Squares',fontsize=14)

  #设置y轴标签及其字号

  plt.show()

  #显示图表

  制作出图表

  我们希望x轴的刻度是0,1,2,3,4……,y轴的刻度是0,10,20,30……,并且希望两个坐标轴的范围都能再大一点,所以我们需要手动设置。

  二、手动设置坐标轴刻度间隔以及刻度范围

  import matplotlib.pyplot as plt

  from matplotlib.pyplot import MultipleLocator

  #从pyplot导入MultipleLocator类,这个类用于设置刻度间隔

  x_values=list(range(11))

  y_values=[x**2 for x in x_values]

  plt.plot(x_values,y_values,c='green')

  plt.title('Squares',fontsize=24)

  plt.tick_params(axis='both',which='major',labelsize=14)

  plt.xlabel('Numbers',fontsize=14)

  plt.ylabel('Squares',fontsize=14)

  x_major_locator=MultipleLocator(1)

  #把x轴的刻度间隔设置为1,并存在变量里

  y_major_locator=MultipleLocator(10)

  #把y轴的刻度间隔设置为10,并存在变量里

  ax=plt.gca()无锡妇科医院哪家好 http://wapyyk.39.net/wx/zonghe/fc96e.html/

  #ax为两条坐标轴的实例

  ax.xaxis.set_major_locator(x_major_locator)

  #把x轴的主刻度设置为1的倍数

  ax.yaxis.set_major_locator(y_major_locator)

  #把y轴的主刻度设置为10的倍数

  plt.xlim(-0.5,11)

  #把x轴的刻度范围设置为-0.5到11,因为0.5不满一个刻度间隔,所以数字不会显示出来,但是能看到一点空白

  plt.ylim(-5,110)

  #把y轴的刻度范围设置为-5到110,同理,-5不会标出来,但是能看到一点空白

  plt.show()

  绘制结果

用Python设置matplotlib.plot的坐标轴刻度间隔以及刻度范围的更多相关文章

  1. python matplotlib plot 数据中的中文无法正常显示的解决办法

    转发自:http://blog.csdn.net/laoyaotask/article/details/22117745?utm_source=tuicool python matplotlib pl ...

  2. python matplotlib.plot画图显示中文乱码的问题

    在matplotlib.plot生成的统计图表中,中文总是无法正常显示.在网上也找了些资料,说是在程序中指定字体文件,不过那样的话需要对plot进行很多设置,而且都是说的设置坐标轴标题为中文,有时候图 ...

  3. python库之matplotlib学习---关于坐标轴

    首先定·定义x, y创建一个figure import numpy as np import matplotlib.pyplot as plt x = np.linspace(-1, 1, 10) y ...

  4. 『Python』matplotlib坐标轴应用

    1. 设置坐标轴的位置和展示形式 import numpy as np import matplotlib.pyplot as plt import matplotlib as mpl mpl.use ...

  5. Python中matplotlib模块解析

    用Matplotlib绘制二维图像的最简单方法是: 1.  导入模块 导入matplotlib的子模块 import matplotlib.pyplot as plt import numpy as ...

  6. pylab.show()没有显示图形图像(python的matplotlib画图包)

    no display name and no $DISPLAY environment variable ============================ @Neil's answer is ...

  7. 用python的matplotlib和numpy库绘制股票K线均线和成交量的整合效果(含量化验证交易策略代码)

    在用python的matplotlib和numpy库绘制股票K线均线的整合效果(含从网络接口爬取数据和验证交易策略代码)一文里,我讲述了通过爬虫接口得到股票数据并绘制出K线均线图形的方式,在本文里,将 ...

  8. python之matplotlib绘图基础

    Python之matplotlib基础 matplotlib是Python优秀的数据可视化第三方库 matplotlib库的效果可参考 http://matplotlib.org/gallery.ht ...

  9. Python数据分析matplotlib可视化之绘图

    Matplotlib是一个基于python的2D画图库,能够用python脚本方便的画出折线图,直方图,功率谱图,散点图等常用图表,而且语法简单. Python中通过matplotlib模块的pypl ...

随机推荐

  1. Jenkins权威指南

    https://jenkins.io/doc/   ---官网 https://www.cnblogs.com/leefreeman/p/4226978.html

  2. redis 拒绝远程访问解决

    启动时报的警告: 1.Warning: no config file specified, using the default config. In order to specify a config ...

  3. TDH-常见运维指令

    1.查看cpu: cat /proc/cpuinfo | grep processor2.查看磁盘:df -h (查看磁盘使用率) df -i (查看iNode使用) fdisk -l (查看磁盘整体 ...

  4. 获取spring里的bean

    ClassPathXmlApplicationContext applicationContext = new ClassPathXmlApplicationContext("spring. ...

  5. SpringMVC注解方式与文件上传

    目录: springmvc的注解方式 文件上传(上传图片,并显示) 一.注解 在类前面加上@Controller 表示该类是一个控制器在方法handleRequest 前面加上 @RequestMap ...

  6. css设置文字超出部分显示省略号。。。

    兼容IE/Firefox/Chrome display:block; white-space:nowrap; overflow:hidden; text-overflow:ellipsis;

  7. Kendo UI Widgets 概述

    UI Widgets 概述 Kendo UI 是基于 jQuery 库开发的,Kendo UI widgets 是以 jQuery 插件形式提供的.这些插件的名称基本上都是以 kendo 作为前缀.比 ...

  8. mui对话框、表单

    1.mui.alert() 普通提醒参数 1.message Type: String 提示对话框上显示的内容 2.title Type: String 提示对话框上显示的标题 3.btnValue ...

  9. Arduino ESP8266编程深入要点

    Arduino for ESP8266的话,如果不修改代码,默认没有办法进入轻睡眠的省电模式,只能进入Modem Sleep,也就是说Wifi可以暂时睡眠但是CPU没法睡,Modem Sleep最低功 ...

  10. C#字段声明部分如何调用该类中的方法进行初始化?

    问题描述: 有时,功能需求,需要在初始化字段时,需要视不同情况赋予不同字段值. 解决办法: 将方法设为static即可. e.g. public string str = SetStr(); publ ...