📌  相关文章
📜  Python中的 Matplotlib.axes.Axes.get_yticks()

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

Python中的 Matplotlib.axes.Axes.get_yticks()

Matplotlib是Python中的一个库,它是 NumPy 库的数值数学扩展。 Axes 类包含大部分图形元素:Axis、Tick、Line2D、Text、Polygon 等,并设置坐标系。 Axes 的实例通过回调属性支持回调。

matplotlib.axes.Axes.get_yticks()函数

matplotlib 库的 axes 模块中的Axes.get_yticks()函数用于将 y 刻度作为位置列表返回。

下面的示例说明了 matplotlib.axes 中的 matplotlib.axes.Axes.get_yticks()函数:

示例 1:

# Implementation of matplotlib function
import matplotlib.pyplot as plt
import matplotlib.transforms as mtransforms
  
  
fig, ax = plt.subplots()
ax.plot(range(12, 24), range(12))
ax.set_yticks((2, 5, 7, 10))
  
w = ax.get_yticks()
ax.text(15, 9, "ytick values : "+str(w), 
       fontweight ="bold")
  
fig.suptitle('matplotlib.axes.Axes.get_yticks() \
function Example\n\n', fontweight ="bold")
plt.show()

输出:

示例 2:

# Implementation of matplotlib function
import matplotlib.pyplot as plt
import numpy as np
import matplotlib.mlab as mlab
import matplotlib.gridspec as gridspec
  
  
fs = 1000
t = np.linspace(0, 0.3, 301)
A = np.array([2, 8]).reshape(-1, 1)
f = np.array([150, 140]).reshape(-1, 1)
xn = (A * np.sin(2 * np.pi * f * t)).sum(axis = 0)
xn += 5 * np.random.randn(*t.shape)
  
fig, ax = plt.subplots()
  
yticks = np.arange(-50, 30, 10)
  
ax.psd(xn, NFFT = 301,
       Fs = fs, 
       window = mlab.window_none, 
       pad_to = 1024,
        scale_by_freq = True)
  
ax.set_yticks(yticks)
ax.grid(True)
  
w = ax.get_yticks()
ax.text(80, 12, "ytick values : "+str(w), 
        fontweight ="bold")
  
fig.suptitle('matplotlib.axes.Axes.get_yticks() \
function Example\n\n', fontweight ="bold")
plt.show()

输出: