Getting the result from the KS test:
from scipy import stats
stats.kstest(myarray, 'gamma', (a, b))
we conclude that myarray
does not follow a gamma distribution in case p<0.01
(when rejecting the null hypothesis)?
In addition, when we calculate the a
and b
of the gamma distribution (used for comparing our data) from our data, we cannot use the KS test results?