本文簡要介紹 python 語言中 scipy.special.logit
的用法。
用法:
scipy.special.logit(x, out=None) = <ufunc 'logit'>#
用於ndarrays的Logit ufunc。
logit 函數定義為 logit(p) = log(p/(1-p))。請注意,對於 p<0 或 p>1,logit(0) = -inf、logit(1) = inf 和 logit(p) 會產生 nan。
- x: ndarray
將 logit 應用於元素的 ndarray。
- out: ndarray,可選
函數結果的可選輸出數組
- 標量或 ndarray
與 x 形狀相同的 ndarray。它的條目是 x 的相應條目的 logit。
參數 ::
返回 ::
注意:
作為一個 ufunc logit 需要一些可選的關鍵字參數。有關詳細信息,請參閱ufuncs
例子:
>>> import numpy as np >>> from scipy.special import logit, expit
>>> logit([0, 0.25, 0.5, 0.75, 1]) array([ -inf, -1.09861229, 0. , 1.09861229, inf])
expit
是logit
的逆:>>> expit(logit([0.1, 0.75, 0.999])) array([ 0.1 , 0.75 , 0.999])
為 [0, 1] 中的 x 繪製 logit(x):
>>> import matplotlib.pyplot as plt >>> x = np.linspace(0, 1, 501) >>> y = logit(x) >>> plt.plot(x, y) >>> plt.grid() >>> plt.ylim(-6, 6) >>> plt.xlabel('x') >>> plt.title('logit(x)') >>> plt.show()
相關用法
- Python SciPy special.logsumexp用法及代碼示例
- Python SciPy special.log1p用法及代碼示例
- Python SciPy special.log_expit用法及代碼示例
- Python SciPy special.log_softmax用法及代碼示例
- Python SciPy special.log_ndtr用法及代碼示例
- Python SciPy special.laguerre用法及代碼示例
- Python SciPy special.legendre用法及代碼示例
- Python SciPy special.lambertw用法及代碼示例
- Python SciPy special.exp1用法及代碼示例
- Python SciPy special.expn用法及代碼示例
- Python SciPy special.ncfdtri用法及代碼示例
- Python SciPy special.gamma用法及代碼示例
- Python SciPy special.y1用法及代碼示例
- Python SciPy special.y0用法及代碼示例
- Python SciPy special.ellip_harm_2用法及代碼示例
- Python SciPy special.i1e用法及代碼示例
- Python SciPy special.smirnovi用法及代碼示例
- Python SciPy special.ker用法及代碼示例
- Python SciPy special.ynp_zeros用法及代碼示例
- Python SciPy special.k0e用法及代碼示例
- Python SciPy special.j1用法及代碼示例
- Python SciPy special.expit用法及代碼示例
- Python SciPy special.polygamma用法及代碼示例
- Python SciPy special.nbdtrik用法及代碼示例
- Python SciPy special.nbdtrin用法及代碼示例
注:本文由純淨天空篩選整理自scipy.org大神的英文原創作品 scipy.special.logit。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。