Python scipy.special.chdtri() Examples

The following are 7 code examples of scipy.special.chdtri(). You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may also want to check out all available functions/classes of the module scipy.special , or try the search function .
Example #1
Source File: _continuous_distns.py    From lambda-packs with MIT License 5 votes vote down vote up
def _isf(self, p, df):
        return sc.chdtri(df, p) 
Example #2
Source File: test_basic.py    From Computable with MIT License 5 votes vote down vote up
def test_chdtri(self):
        assert_equal(cephes.chdtri(1,1),0.0) 
Example #3
Source File: test_basic.py    From Computable with MIT License 5 votes vote down vote up
def test_chi2_inv_smalldf():
    assert_almost_equal(special.chdtri(0.6,1-0.957890536704110), 3) 
Example #4
Source File: _continuous_distns.py    From GraphicDesignPatternByPython with MIT License 5 votes vote down vote up
def _isf(self, p, df):
        return sc.chdtri(df, p) 
Example #5
Source File: test_basic.py    From GraphicDesignPatternByPython with MIT License 5 votes vote down vote up
def test_chdtri(self):
        assert_equal(cephes.chdtri(1,1),0.0) 
Example #6
Source File: test_basic.py    From GraphicDesignPatternByPython with MIT License 5 votes vote down vote up
def test_chi2_inv_smalldf():
    assert_almost_equal(special.chdtri(0.6,1-0.957890536704110), 3) 
Example #7
Source File: _continuous_distns.py    From Splunking-Crime with GNU Affero General Public License v3.0 5 votes vote down vote up
def _isf(self, p, df):
        return sc.chdtri(df, p)