matplotlib.pyplot.subplot_tool()函数
Matplotlib是Python中的一个库,它是NumPy库的数值-数学扩展。Pyplot是一个基于状态的Matplotlib模块接口,该模块提供了一个类似matlab的接口。
示例代码
# sample code
import matplotlib.pyplot as plt
plt.plot([1, 2, 3, 4], [16, 4, 1, 8])
plt.show()
输出:
matplotlib.pyplot.subplot_tool()函数
matplotlib库的pyplot模块中的subplot_tool()函数用于启动图形的子绘图工具窗口。
语法:
matplotlib.pyplot.subplot_tool(targetfig=None)
参数:此方法不接受任何参数。
返回:此方法不返回任何值。
下面的例子演示了matplotlib.pyplot.subplot_tool()函数在matplotlib.pyplot中的作用:
示例1
# Implementation of matplotlib function
import matplotlib.pyplot as plt
import numpy as np
fig, axs = plt.subplots()
axs.plot(np.random.random((10, 10)))
plt.subplot_tool()
fig.suptitle('matplotlib.pyplot.subplot_tool() Example')
plt.show()
输出:
示例2
# Implementation of matplotlib function
import matplotlib.pyplot as plt
import numpy as np
fig, (axs, axs1) = plt.subplots(1, 2)
axs.pcolor(np.random.random((10, 10)))
axs1.imshow(np.random.random((10, 10)))
plt.subplot_tool()
fig.suptitle('matplotlib.pyplot.subplot_tool() Example')
plt.show()
输出: