Mercurial > hg > cc > cirrus_work
changeset 190:7492bd2f5423
can't add props to DescribeResult
author | Henry S. Thompson <ht@inf.ed.ac.uk> |
---|---|
date | Thu, 30 Nov 2023 14:18:56 +0000 |
parents | 891d84a453bb |
children | b60a961977c3 |
files | lib/python/cc/ccstats.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lib/python/cc/ccstats.py Thu Nov 30 14:17:34 2023 +0000 +++ b/lib/python/cc/ccstats.py Thu Nov 30 14:18:56 2023 +0000 @@ -46,7 +46,7 @@ self.all=self.corr[0][1:] self.all_s=stats.describe(self.all) self.all_m=self.all_s.mean - self.all_s.stdev=math.sqrt(self.all_s.variance) + self.all_sd=math.sqrt(self.all_s.variance) self.x=np.array([np.concatenate((self.corr[i][1:i], self.corr[i][i+1:])) for i in range(1,self.N+1)])