当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python Matplotlib.pyplot.subplot_tool()用法及代码示例


Matplotlib是Python中的一个库,它是数字的-NumPy库的数学扩展。 Pyplot是Matplotlib模块的基于状态的接口,该模块提供了MATLAB-like接口。

样例代码

# 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中的matplotlib.pyplot.subplot_tool()函数:

范例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()

输出:




相关用法


注:本文由纯净天空筛选整理自SHUBHAMSINGH10大神的英文原创作品 Matplotlib.pyplot.subplot_tool() in Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。