Matplotlib是Python中的一个库,它是数字的-NumPy库的数学扩展。 Figure模块提供了顶层Artist,即Figure,其中包含所有绘图元素。此模块用于控制所有图元的子图和顶层容器的默认间距。
matplotlib.figure.Figure.draw()函数
matplotlib库的draw()方法图形模块用于使用matplotlib.backend_bases.RendererBase实例渲染器来渲染图形。
用法: draw(self, renderer)
参数:这接受以下描述的以下参数:
- renderer:此参数是matplotlib.backend_bases.RendererBase实例渲染器。
返回值:此方法不返回任何值。
以下示例说明了matplotlib.figure中的matplotlib.figure.Figure.draw()函数:
范例1:
# Implementation of matplotlib function
from mpl_toolkits.mplot3d import axes3d
import matplotlib.pyplot as plt
fig, ax = plt.subplots()
def tellme(s):
ax.set_title(s, fontsize = 16)
fig.canvas.draw()
renderer = fig.canvas.renderer
fig.draw(renderer)
tellme('matplotlib.figure.Figure.draw() \
function Example')
plt.show()
输出:
范例2:
# Implementation of matplotlib function
from mpl_toolkits.mplot3d import axes3d
import matplotlib.pyplot as plt
fig = plt.figure()
ax = fig.add_subplot(111, projection ='3d')
X, Y, Z = axes3d.get_test_data(0.1)
ax.plot_wireframe(X, Y, Z, rstride = 5,
cstride = 5)
for angle in range(0, 90):
ax.view_init(30, angle)
fig.canvas.draw()
renderer = fig.canvas.renderer
fig.draw(renderer)
plt.pause(.001)
fig.suptitle('matplotlib.figure.Figure.draw() \
function Example')
输出:
相关用法
注:本文由纯净天空筛选整理自SHUBHAMSINGH10大神的英文原创作品 Matplotlib.figure.Figure.draw() in Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。