當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python Scipy stats.hypsecant.pdf()用法及代碼示例


借助stats.hypsecant.pdf()方法,我們可以通過使用來獲得概率密度函數的值stats.hypsecant.pdf()方法。

催眠劑的概率密度函數為

用法: stats.hypsecant.pdf(x, beta)
返回:Return the value of probability density function.

範例1:
在這個例子中,我們可以通過使用stats.hypsecant.pdf()方法,我們可以使用這種方法獲得概率密度函數的值。

# import hypsecant 
from scipy.stats import hypsecant 
beta = 1
  
# Using stats.hypsecant.pdf() method 
gfg = hypsecant.pdf(0.3, beta) 
  
print(gfg)

輸出:

0.25359922429233667

範例2:

# import hypsecant 
from scipy.stats import hypsecant 
beta = 4
  
# Using stats.hypsecant.pdf() method 
gfg = hypsecant.pdf(0.9, beta) 
  
print(gfg)

輸出:

0.028621128378351488



相關用法


注:本文由純淨天空篩選整理自Jitender_1998大神的英文原創作品 Python | Scipy stats.hypsecant.pdf() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。