Exemplo n.º 1
0
 def showcorr (self):
     import ndshow
     # would be nice: labels with parameter names (hard because this is ndshow,
     # not omegaplot)
     d = np.diag (self.covar) ** -0.5
     corr = self.covar * d[np.newaxis,:] * d[:,np.newaxis]
     ndshow.view (corr, title='Correlation Matrix')
Exemplo n.º 2
0
 def showcorr(self):
     import ndshow
     # would be nice: labels with parameter names (hard because this is ndshow,
     # not omegaplot)
     d = np.diag(self.covar)**-0.5
     corr = self.covar * d[np.newaxis, :] * d[:, np.newaxis]
     ndshow.view(corr, title='Correlation Matrix')
Exemplo n.º 3
0
 def showcov (self):
     import ndshow
     # would be nice: labels with parameter names
     ndshow.view (self.covar, title='Covariance Matrix')
Exemplo n.º 4
0
 def showcov (self):
     import ndshow
     # would be nice: labels with parameter names (hard because this is ndshow,
     # not omegaplot)
     ndshow.view (self.covar, title='Covariance Matrix')
Exemplo n.º 5
0
 def showcov(self):
     import ndshow
     # would be nice: labels with parameter names (hard because this is ndshow,
     # not omegaplot)
     ndshow.view(self.covar, title='Covariance Matrix')