Matplotlib是Python中的一个库,它是数字的-NumPy库的数学扩展。轴类包含大多数图形元素:Axis,Tick,Line2D,Text,Polygon等,并设置坐标系。 Axes实例通过callbacks属性支持回调。
matplotlib.axes.Axes.axis()函数
matplotlib库的axiss模块中的Axes.axis()函数是获取或设置某些轴属性的便捷方法。
用法: Axes.axis(self, *args, **kwargs)
参数:此方法接受以下描述的参数:
- xmin,xmax,ymin,ymax:这些参数是要设置的轴限制。
axis([xmin, xmax, ymin, ymax])
- option:此参数用于打开或关闭轴线和标签或选项。
- emit:此参数用于检查是否已将轴极限更改通知观察者。
返回值:此方法返回以下内容:
- xmin,xmax,ymin,ymax:这将返回轴限制。
以下示例说明了matplotlib.axes中的matplotlib.axes.Axes.axis()函数:
范例1:
# Implementation of matplotlib function
import matplotlib.pyplot as plt
import numpy as np
labels = 'Geek1', 'Geek2', 'Geek3', 'Geek4', 'Geek5'
sizes = [95, 230, 145, 40, 65]
explode = (0, 0.2, 0, 0, 0)
fig1, ax1 = plt.subplots()
ax1.pie(sizes, explode = explode, labels = labels,
autopct ='% 1.0f %%',
shadow = True, startangle = 90)
ax1.axis('square')
ax1.set_title('matplotlib.axes.Axes.axis() \
Example\n', fontsize = 14, fontweight ='bold')
plt.show()
输出:
范例2:
# Implementation of matplotlib function
import matplotlib.pyplot as plt
import matplotlib.patches as patches
import matplotlib.cbook as cbook
# image used is
# https://media.geeksforgeeks.org / wp-content
# / uploads / 20200402214740 / geek.jpg
with cbook.get_sample_data('geek.JPG') as image_file:
image = plt.imread(image_file)
fig, (ax, ax1) = plt.subplots(2, 1)
im = ax.imshow(image)
patch = patches.Rectangle((0, 0), 260, 200,
transform = ax.transData)
im.set_clip_path(patch)
ax.set_title('Without Axis Function',
fontsize = 10, fontweight ='bold')
im = ax1.imshow(image)
patch = patches.Rectangle((0, 0), 260, 200,
transform = ax1.transData)
im.set_clip_path(patch)
ax1.axis('off')
ax1.set_title("Axis Function with 'Off' option",
fontsize = 10, fontweight ='bold')
plt.show()
输出:
相关用法
注:本文由纯净天空筛选整理自SHUBHAMSINGH10大神的英文原创作品 Matplotlib.axes.Axes.axis() in Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。