We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4c27cc4 + 942a1bd commit ca40cd3Copy full SHA for ca40cd3
pymc3/tests/test_stats.py
@@ -387,13 +387,13 @@ class TestDfSummary(bf.ModelBackendSampledTestCase):
387
def test_column_names(self):
388
ds = df_summary(self.mtrace, batches=3)
389
npt.assert_equal(np.array(['mean', 'sd', 'mc_error',
390
- 'hpd_5', 'hpd_95']),
+ 'hpd_2.5', 'hpd_97.5']),
391
ds.columns)
392
393
def test_column_names_decimal_hpd(self):
394
ds = df_summary(self.mtrace, batches=3, alpha=0.001)
395
396
- 'hpd_0.1', 'hpd_99.9']),
+ 'hpd_0.05', 'hpd_99.95']),
397
398
399
def test_column_names_custom_function(self):
@@ -410,7 +410,7 @@ def customf(x):
410
ds = df_summary(self.mtrace, batches=3,
411
stat_funcs=[customf], extend=True)
412
413
- 'hpd_5', 'hpd_95', 'my_mean']),
+ 'hpd_2.5', 'hpd_97.5', 'my_mean']),
414
415
416
def test_value_alignment(self):
0 commit comments