Matplotlib是Python中的一个库,它是数字的-NumPy库的数学扩展。它是Python中令人惊叹的可视化库,用于数组的2D图,并用于与更广泛的SciPy堆栈配合使用。
Matplotlib.axis.Axis.reset_ticks()函数
matplotlib库的轴模块中的Axis.reset_ticks()函数用于re-initialize主和次要Tick列表。
用法: Axis.reset_ticks(self)
参数:此方法不接受任何参数。
返回值:此方法不返回任何值。
以下示例说明了matplotlib.axis中的matplotlib.axis.Axis.reset_ticks()函数:
范例1:
Python3
# Implementation of matplotlib function
from matplotlib.axis import Axis
import matplotlib.pyplot as plt
import matplotlib.colors as mcolors
import matplotlib.gridspec as gridspec
import numpy as np
plt.rcParams['savefig.facecolor'] = "0.8"
plt.rcParams['figure.figsize'] = 6, 5
fig, ax = plt.subplots()
ax.plot([1, 2])
ax.locator_params("x",nbins=3)
ax.locator_params("y",nbins=5)
ax.set_xlabel('x-label')
ax.set_ylabel('y-label')
ax.yaxis.reset_ticks()
ax.grid()
fig.suptitle("""matplotlib.axis.Axis.reset_ticks()
function Example\n""", fontweight ="bold")
plt.show()
输出:
范例2:
Python3
# Implementation of matplotlib function
from matplotlib.axis import Axis
import numpy as np
import matplotlib.pyplot as plt
import matplotlib.transforms as mtransforms
delta = 0.5
x = y = np.arange(-2.0, 4.0, delta)
X, Y = np.meshgrid(x**2, y)
Z1 = np.exp(-X**2 - Y**2)
Z2 = np.exp(-(X - 1)**2 - (Y - 1)**2)
Z = (Z1 - Z2)
transform = mtransforms.Affine2D().rotate_deg(30)
fig, ax = plt.subplots()
im = ax.imshow(Z, interpolation ='none',
origin ='lower',
extent =[-2, 4, -3, 2],
clip_on = True)
trans_data = transform + ax.transData
Axis.set_transform(im, trans_data)
x1, x2, y1, y2 = im.get_extent()
ax.plot([x1, x2, x2, x1, x1],
[y1, y1, y2, y2, y1],
"ro-",
transform = trans_data)
ax.set_xlim(-5, 5)
ax.set_ylim(-4, 4)
ax.yaxis.reset_ticks()
ax.grid()
fig.suptitle("""matplotlib.axis.Axis.reset_ticks()
function Example\n""", fontweight ="bold")
plt.show()
输出:
相关用法
- Python Wand function()用法及代码示例
- Python hex()用法及代码示例
- Python now()用法及代码示例
- Python oct()用法及代码示例
- Python int()用法及代码示例
- Python id()用法及代码示例
- Python tell()用法及代码示例
- Python sum()用法及代码示例
- Python ord()用法及代码示例
- Python str()用法及代码示例
- Python cmp()用法及代码示例
- Python dir()用法及代码示例
- Python map()用法及代码示例
- Python fmod()用法及代码示例
- Python globals()用法及代码示例
- Python ldexp()用法及代码示例
注:本文由纯净天空筛选整理自SHUBHAMSINGH10大神的英文原创作品 Matplotlib.axis.Axis.reset_ticks() function in Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。