概述
xscale
和yscale
函数的作用都是设置坐标轴的缩放类型。其中
xscale
函数作用是设置x轴的缩放类型。yscale
函数作用是设置y轴的缩放类型。
两者参数相同,仅功能稍有不同。
xscale
函数的签名为:matplotlib.pyplot.xscale(value, **kwargs)
yscale
函数的签名为:matplotlib.pyplot.yscale(value, **kwargs)
xscale
函数
xscale
函数的签名为:matplotlib.pyplot.xscale(value, **kwargs)
默认的坐标轴缩放类型为:"linear"
参数说明如下:
value
:X轴的缩放类型。字符串,取值范围为{"linear", "log", "symlog", "logit", ...}
或ScaleBase
对象,自定义的缩放类型需要使用matplotlib.scale.register_scale
注册。必备参数。**kwargs
:不同缩放类型接受的关键字参数不同。具体查看相关类:matplotlib.scale.LinearScale
matplotlib.scale.LogScale
matplotlib.scale.SymmetricalLogScale
matplotlib.scale.LogitScale
matplotlib.scale.FuncScale
xscale
函数的返回值为(locs, labels)
元组。其中locs
为X轴刻度位置列表,labels
为X轴刻度标签列表
案例
import matplotlib.pyplot as plt
import numpy as np
np.random.seed()
# 构造数据,要求数据都在0-1之间,否则不能设置logit缩放类型
y = np.random.normal(loc=0.5, scale=0.4, size=1000)
y = y[(y > 0) & (y < 1)]
y.sort()
x = np.arange(len(y))
# linear,默认缩放类型
plt.subplot(221)
plt.plot(x, y)
plt.yscale('linear')
plt.title('linear')
plt.grid(True)
# log
plt.subplot(222)
plt.plot(x, y)
plt.yscale('log')
plt.title('log')
plt.grid(True)
# symmetric log
plt.subplot(223)
plt.plot(x, y - y.mean())
plt.yscale('symlog', linthresh=0.01)
plt.title('symlog')
plt.grid(True)
# logit
plt.subplot(224)
plt.plot(x, y)
plt.yscale('logit')
plt.title('logit')
plt.grid(True)
plt.subplots_adjust(top=0.92, bottom=0.08, left=0.10, right=0.95, hspace=0.25,
wspace=0.35)
plt.show()
今天的文章matplotlib调整坐标轴_matplotlib设置y轴范围分享到此就结束了,感谢您的阅读。
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://bianchenghao.cn/81662.html