时间:2021-05-22
matplotlib默认根据数据系列自动缩放坐标轴范围。pyplot模块中的autoscale函数可以切换是否自动缩放坐标轴范围,xlim()和ylim()函数可手动设置坐标轴范围。
对于pyplot模块控制坐标轴范围是否自动缩放的函数为autoscale。
函数签名为matplotlib.pyplot.autoscale(enable=True, axis='both', tight=None)
参数作用及取值如下:
底层相关函数有:
自动缩放坐标轴范围功能对比。
import matplotlib.pyplot as pltplt.subplot(121)plt.plot([0.5,0.5])print(plt.gca().get_autoscale_on())print(plt.gca().get_autoscalex_on())print(plt.gca().get_autoscaley_on())plt.subplot(122)plt.plot([0.5,0.5])plt.autoscale(False)print(plt.gca().get_autoscale_on())print(plt.gca().get_autoscalex_on())print(plt.gca().get_autoscaley_on())plt.show()输出:
True
True
True
False
False
False
手动设置x坐标轴的范围或获取x坐标轴的范围。
函数签名为matplotlib.pyplot.xlim(*args, **kwargs)。
调用签名有三种:
其中left为x坐标轴左侧极值,right为x坐标轴右侧极值。注意!left可以比right大!
返回值为(left, right),即坐标轴范围元组。
xlim()相当于Axes.get_xlim,xlim(*args, **kwargs)相当于Axes.set_xlim。
演示xlim()的调用方法。
import matplotlib.pyplot as pltplt.figure(figsize=(14, 3))plt.subplot(141)plt.plot([1, 1])print(plt.xlim())plt.subplot(142)plt.plot([1, 1])plt.xlim(0, 1.5)plt.annotate('plt.xlim(0,1.5)', (0.1, 1.001))print(plt.xlim())plt.subplot(143)plt.plot([1, 1])plt.xlim((0, 1.5))plt.annotate('plt.xlim((0,1.5))', (0.1, 1.001))print(plt.xlim())plt.subplot(144)plt.plot([1, 1])plt.xlim(left=0, right=1.5)plt.annotate('plt.xlim(left=0,right=1.5)', (0.1, 1.001))print(plt.xlim())plt.show()输出:
(-0.05, 1.05)
(0.0, 1.5)
(0.0, 1.5)
(0.0, 1.5)
手动设置y坐标轴的范围或获取y坐标轴的范围。使用方法与xim()函数相似。
函数签名为matplotlib.pyplot.ylim(*args, **kwargs)。
调用签名有三种:
其中bottom为x坐标轴左侧极值,top为x坐标轴右侧极值。注意!bottom可以比top大!
返回值为(bottom, top),即坐标轴范围元组。
ylim()相当于Axes.get_ylim,ylim(*args, **kwargs)相当于Axes.set_ylim。
演示ylim()的调用方法。
import matplotlib.pyplot as pltplt.figure(figsize=(14, 3))plt.subplot(141)plt.plot([1, 1])print(plt.ylim())plt.subplot(142)plt.plot([1, 1])plt.ylim(0, 1.5)plt.annotate('plt.ylim(0,1.5)', (0.1, 1.01))print(plt.ylim(0,1.5))plt.subplot(143)plt.plot([1, 1])plt.ylim((0, 1.5))plt.annotate('plt.ylim((0,1.5))', (0.1, 1.01))print(plt.ylim())plt.subplot(144)plt.plot([1, 1])plt.ylim(bottom=0, top=1.5)plt.annotate('plt.ylim(bottom=0,top=1.5)', (0.1, 1.01))print(plt.ylim())plt.show()输出:
(0.945, 1.0550000000000002)
(0.0, 1.5)
(0.0, 1.5)
(0.0, 1.5)
到此这篇关于matplotlib之pyplot模块坐标轴范围设置(autoscale(),xlim(),ylim())的文章就介绍到这了,更多相关matplotlib 坐标轴范围内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
在使用matplotlib模块时画坐标图时,往往需要对坐标轴设置很多参数,这些参数包括横纵坐标轴范围、坐标轴刻度大小、坐标轴名称等在matplotlib中包含了
本文实例讲述了Python使用matplotlib模块绘制图像并设置标题与坐标轴等信息。分享给大家供大家参考,具体如下:进行图像绘制有时候需要设定坐标轴以及图像
总结matplotlib绘图如何设置坐标轴刻度大小和刻度。上代码:frompylabimport*frommatplotlib.tickerimportMult
引言我们还可以对图形中的坐标轴进行处理,包括x、y轴对换、设定坐标轴范围、刻度线修改与去除等等。要想对图形玩得转,坐标轴处理精通不可或缺。坐标轴对换我们使用co
Python学习笔记--坐标轴范围参靠视频:《Python数据可视化分析matplotlib教程》链接:https:///video/av6989413/