Changes in plotting functions.

This commit is contained in:
Ricardo Andrade 2013-02-01 17:58:21 +00:00
parent f7d2fc6ca4
commit 5e2baf1919
5 changed files with 71 additions and 31 deletions

View file

@ -42,7 +42,7 @@ class Gaussian(likelihood):
"""
mean = mu*self._std + self._mean
true_var = (var + self._variance)*self._std**2
_5pc = mean + mean - 2.*np.sqrt(var)
_5pc = mean + - 2.*np.sqrt(var)
_95pc = mean + 2.*np.sqrt(var)
return mean, _5pc, _95pc