Commit af454ca0 authored by panos's avatar panos

Bug fixed in ExcelOutput object

parent 1846d78f
......@@ -239,6 +239,15 @@ class Output(BasicStatisticalMeasures,DistFittest):
del A['min']
del A['max']
del A['distributionType']
sheet2.write(14,15,(A.keys()[0]))
sheet2.write(14,16,(A.keys()[1]))
sheet2.write(15,15,(A.values()[0]))
sheet2.write(15,16,(A.values()[1]))
elif A['distributionType']=='Exp' or A['distributionType']=='Poisson' or A['distributionType']=='Geometric':
del A['distributionType']
sheet2.write(14,15,(A.keys()[0]))
sheet2.write(15,15,(A.values()[0]))
else:
del A['distributionType']
sheet2.write(14,15,(A.keys()[0]))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment