Matplotlib是一个绘图库,用于在Python中创建静态,动画和交互式可视化。 Pyplot是Matplotlib模块,提供MATLAB-like接口。 Matplotlib设计为与MATLAB一样可用,具有使用Python的能力以及免费和开源的优势。
matplotlib.pyplot.axis()
此函数用于为图形设置一些轴属性。
用法: matplotlib.pyplot.axis(*args, emit=True, **kwargs)
参数:
xmin,xmax,ymin,ymax:这些参数可以用来
在图形上设置轴限制
emit:它的布尔值用于通知观察者轴极限变化
范例1:
import matplotlib.pyplot as plt
x =[1, 2, 3, 4, 5]
y =[2, 4, 6, 8, 10]
# Plotting the graph
plt.plot(x, y)
# Setting the x-axis to 1-10
# and y-axis to 1-15
plt.axis([0, 10, 1, 15])
# Showing the graph with updated axis
plt.show()
输出:
范例2:
import matplotlib.pyplot as plt
x =[1, 2, 3, 4, 5]
y =[2, 4, 6, 8, 10]
plt.plot(x, y)
# we can turn off the axis and display
# only the line by passing the
# optional parameter 'off' to it
plt.axis('off')
plt.show()
输出:
相关用法
注:本文由纯净天空筛选整理自sathvik chiramana大神的英文原创作品 Matplotlib.pyplot.axis() in Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。