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

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

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

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

matplotlib.axes.Axes.get_xaxis()函数

matplotlib 库的 axes 模块中的Axes.get_xaxis()函数返回 XAxis 实例。

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

示例 1:

# Implementation of matplotlib function
import matplotlib.pyplot as plt
import numpy as np
       
X = np.arange(-20, 20, 0.5)
Y = np.arange(-20, 20, 0.5)
U, V = np.meshgrid(X, Y)
   
fig, ax = plt.subplots()
ax.quiver(X, Y, U, V)
w = ax.get_xaxis()
w.set_visible(False)
ax.set_title('matplotlib.axes.Axes.get_xaxis() \
Example', fontsize = 14, fontweight ='bold')
plt.show()

输出:

示例 2:

# Implementation of matplotlib function
import matplotlib.pyplot as plt
import numpy as np
       
x = np.linspace(0, 200, 10)
yy = np.transpose([2 * np.sin(x + phi) for phi in x])
   
fig, ax = plt.subplots()
ax.plot(yy)
w = ax.get_xaxis()
w.tick_top()
ax.set_title('matplotlib.axes.Axes.get_xaxis() \
Example', fontsize = 14, fontweight ='bold')
plt.show()

输出: