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


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


Matplotlib是Python中的一个库,它是数字的-NumPy库的数学扩展。 Pyplot是Matplotlib模块的基于状态的接口,该模块提供了MATLAB-like接口。在Pyplot中可以使用各种图,例如线图,轮廓图,直方图,散点图,3D图等。

matplotlib.pyplot.table()函数

matplotlib库的ginput()方法pyplot模块用于阻止与图进行交互的调用。

用法: matplotlib.pyplot.ginput(n=1, timeout=30, show_clicks=True, mouse_add=1, mouse_pop=3, mouse_stop=2)


参数:此方法接受以下描述的参数:

  • n:此参数是要累积的鼠标单击次数。
  • timeout:此参数是超时之前要等待的秒数。
  • show_clicks:此参数用于在每次单击的位置显示一个红叉。
  • mouse_add:此参数是用于添加点的鼠标按钮。
  • mouse_pop:此参数是鼠标按钮,用于删除最近添加的点。
  • mouse_stop:此参数是用于停止输入的鼠标按钮。

返回值:此方法返回单击的(x,y)坐标的列表。

以下示例说明了matplotlib.pyplot中的matplotlib.pyplot.ginput()函数:

范例1:

# Implementation of matplotlib function 
import matplotlib.pyplot as plt 
import numpy as np 
t = np.arange(10) 
   
  
plt.plot(t, np.sin(t)) 
     
plt.title('matplotlib.pyplot.ginput()\ 
 function Example', fontweight ="bold") 
   
print("After 3 clicks:") 
x = plt.ginput(3) 
print(x) 
   
plt.show()

输出:

After 3 clicks:
[(4.460080645161289, 0.5915838985273842), 
(4.460080645161289, 0.5915838985273842), 
(4.460080645161289, 0.5915838985273842)]

范例2:

# Implementation of matplotlib function 
import matplotlib.pyplot as plt 
import numpy as np 
   
  
np.random.seed(10**7) 
     
x1 = np.random.rand(103, 53)  
     
plt.title('matplotlib.pyplot.ginput() function\ 
 Example', fontweight ="bold") 
   
print("After 2 clicks:") 
plt.imshow(x1) 
x = plt.ginput(2)  
print(x) 
   
plt.show()

输出:

After 2 clicks:
[(8.443181818181813, 38.90530303030302), 
(8.443181818181813, 38.90530303030302)]



相关用法


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