Exemplo n.º 1
0
 def test_pndist(self):
     assert_dists_are_equivalent(
         activity._check_distro(dist.normal, mu=0, sigma=1),
         stats.norm(0, 1))
Exemplo n.º 2
0
 def test_pndist_as_class(self):
     assert activity._check_distro(dist.normal,
                                   as_class=True) == dist.normal
Exemplo n.º 3
0
 def test_string_good_as_class(self):
     assert activity._check_distro('normal', as_class=True) == dist.normal
Exemplo n.º 4
0
 def test_string_bad(self):
     with pytest.raises(ValueError):
         activity._check_distro('junk')
Exemplo n.º 5
0
 def test_number(self):
     with pytest.raises(ValueError):
         activity._check_distro(45)
Exemplo n.º 6
0
 def test_number(self):
     activity._check_distro(45)
Exemplo n.º 7
0
 def test_scipy_dist(self):
     assert_dists_are_equivalent(
         activity._check_distro(stats.lognorm(s=2)),
         stats.lognorm(s=2)
     )
Exemplo n.º 8
0
 def test_string_good_as_class(self):
     assert activity._check_distro('normal', as_class=True) == dist.normal
Exemplo n.º 9
0
 def test_pndist(self):
     assert_dists_are_equivalent(
         activity._check_distro(dist.normal, mu=0, sigma=1),
         stats.norm(0, 1)
     )
Exemplo n.º 10
0
 def test_number(self):
     with pytest.raises(ValueError):
         activity._check_distro(45)
Exemplo n.º 11
0
 def test_pndist_as_class(self):
     assert activity._check_distro(dist.normal, as_class=True) == dist.normal
Exemplo n.º 12
0
 def test_string_bad(self):
     with pytest.raises(ValueError):
         activity._check_distro('junk')
Exemplo n.º 13
0
 def test_string_good_as_class(self):
     nt.assert_equal(activity._check_distro('normal', as_class=True), dist.normal)
Exemplo n.º 14
0
 def test_pndist_as_class(self):
     nt.assert_equal(activity._check_distro(dist.normal, as_class=True), dist.normal)
Exemplo n.º 15
0
 def test_string(self):
     assert_dists_are_equivalent(
         activity._check_distro('normal', mu=0, sigma=1), stats.norm(0, 1))
Exemplo n.º 16
0
 def test_string(self):
     assert_dists_are_equivalent(
         activity._check_distro('normal', mu=0, sigma=1),
         stats.norm(0, 1)
     )
Exemplo n.º 17
0
 def test_scipy_dist(self):
     assert_dists_are_equivalent(activity._check_distro(stats.lognorm(s=2)),
                                 stats.lognorm(s=2))
Exemplo n.º 18
0
 def test_string_bad(self):
     activity._check_distro('junk')