T-test now works, and outputs a histogram as well as t-values and p-values.

This commit is contained in:
2007-07-03 16:25:38 +00:00
parent 99987999db
commit d29013a863
3 changed files with 66 additions and 6 deletions

View File

@@ -241,8 +241,8 @@ class Options(dict):
"""
def __init__(self, *args,**kw):
dict.__init__(self, *args, **kw)
self['out_plots'] = None
self['out_data'] = None
self['out_plots'] = []
self['out_data'] = []
self['all_plots'] = []
self['all_data'] = []