matplotlib.pyplot.axis()函数
Matplotlib是一个在Python中创建静态、动画和交互式可视化的绘图库。Pyplot是一个Matplotlib模块,它提供了一个类似matlab的接口。Matplotlib被设计成与MATLAB一样好用,具有使用Python的能力以及免费和开源的优势。
matplotlib.pyplot.axis ()
此函数用于设置图形的一些轴属性。
语法:matplotlib.pyplot.axis(*args, emit=True, **kwargs)
参数:
xmin, xmax, ymin, ymax:这些参数可以用于
在图形上设置轴的限制
emit:它是一个bool值,用于通知观察者轴限制的变化
示例1 设置x轴为1到10,y轴为1到15
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 不显示x和y轴
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()
输出: