3
我正在編寫Python腳本來尋找Hypergeometric分佈的概率。當我在使用scipy
hypergeom()
功能,它顯示象下面這樣:scipy中的rv_frozen對象是什麼意思?
scipy.stats.distributions.rv_frozen object at 0*2519690
我用Google搜索,但沒有找到什麼有用的東西。我只是想知道它究竟意味着什麼?
我正在編寫Python腳本來尋找Hypergeometric分佈的概率。當我在使用scipy
hypergeom()
功能,它顯示象下面這樣:scipy中的rv_frozen對象是什麼意思?
scipy.stats.distributions.rv_frozen object at 0*2519690
我用Google搜索,但沒有找到什麼有用的東西。我只是想知道它究竟意味着什麼?
這是一個知道其形狀參數(hypergeom:M,N,n)並具有方法pmf,cdf等的對象(實例)。這兩個從用戶角度來看是等效的:hypergeom.pmf(4, 20, 7, 12)
和hypergeom(20, 7, 12).pmf(4)
。
感謝男人!! 1現在工作 –
這只是從'hypergeom()'函數獲得的對象的字符串表示形式。它會告訴你它的類:'scipy.stats.distributions.rv_frozen'和內存位置。所以沒有很多信息。 – cel
[This answer](http://stackoverflow.com/a/37511417/2087463)和[this answer](http://stackoverflow.com/a/37501076/2087463)包含關於'rv_frozen'的描述和有用的信息類。 – tmthydvnprt