📜  Python中的 Matplotlib.pyplot.axis()

📅  最后修改于: 2022-05-13 01:54:40.797000             🧑  作者: Mango

Python中的 Matplotlib.pyplot.axis()

Matplotlib是一个绘图库,用于在Python中创建静态、动画和交互式可视化。 Pyplot是一个 Matplotlib 模块,它提供了一个类似 MATLAB 的接口。 Matplotlib 旨在与 MATLAB 一样可用,具有使用Python的能力以及免费和开源的优势。

matplotlib.pyplot.axis()

该函数用于为图形设置一些轴属性。

示例 #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()

输出:
Matplotlib.pyplot.axis()

示例 #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()

输出:
Matplotlib.pyplot.axis()