Matplotlib.artist.artist.set_visible()
Python matplotlib库的artist模块中的set_visible()方法用于设置artist的可见性。
语法:Artist.set_visible(self, b)
参数:该方法接受以下参数。
- b:布尔值。
Returns:该方法不返回任何值。
下面的例子演示了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()
输出: