Python中的 Matplotlib.artist.Artist.set_visible()
Matplotlib是Python中的一个库,它是 NumPy 库的数值数学扩展。 Artist 类包含呈现为 FigureCanvas 的对象的 Abstract 基类。图中所有可见元素都是 Artist 的子类。
matplotlib.artist.Artist.set_visible() 方法
matplotlib 库的艺术家模块中的set_visible() 方法用于设置艺术家的可见性。
Syntax: Artist.set_visible(self, b)
Parameters: This method accepts the following parameters.
- b: This parameter is the boolean value.
Returns: This method does not return any value.
以下示例说明了 matplotlib 中的 matplotlib.artist.Artist.set_visible()函数:
示例 1:
# Implementation of matplotlib function
from matplotlib.artist import Artist
import matplotlib.pyplot as plt
from mpl_toolkits.axisartist.axislines import Subplot
fig = plt.figure()
ax = Subplot(fig, 111)
fig.add_subplot(ax)
Artist.set_visible(ax.axis["left"], False)
Artist.set_visible(ax.axis["top"], False)
fig.suptitle('matplotlib.artist.Artist.set_visible()\
function Example', fontweight ="bold")
plt.show()
输出:
示例 2:
# Implementation of matplotlib function
from matplotlib.artist import Artist
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()
Artist.set_visible(w, False)
fig.suptitle('matplotlib.artist.Artist.set_visible()\
function Example', fontweight ="bold")
plt.show()
输出: