I am checking the normality of the distribution of my data. Here. I am running the anderson test on that and the output is infinity. How can I interpret the results and how can I transform this type of distribution to normal distribution?
check_list= ["norm","logistic"]
for typelike in check_list:
print typelike
x=mydata
print sp.stats.anderson(x, dist=typelike)
I am getting the following output
norm
AndersonResult(statistic=inf,
critical_values=array([ 0.576, 0.656, 0.787, 0.918, 1.092]),
significance_level=array([ 15. , 10. , 5. , 2.5, 1. ]))
logistic
AndersonResult(statistic=2504915.1041950081,
critical_values=array([ 0.426, 0.563, 0.66 , 0.769, 0.906, 1.01 ]),
significance_level=array([ 25. , 10. , 5. , 2.5, 1. , 0.5]))