I'm talking about retrieving the values of this table media a python formula
https://www.soest.hawaii.edu/GG/FACULTY/ITO/GG413/K_S_Table_one_Sample.pdf
i've been looking for a while but scipy functions do not look for this value and tbh I'm getting pretty confused over here.
I've been looking inside scipy built in formulas, without success. For example, in the aforementioned table, D[0.1, 10] == 0.36866. Yet scipy.stats.kstest does NOT return this same value, no matter how much do I play with my data.
This can be done with
scipy
, using theksone
distribution and itsppf
(percent point function) method, rather than thekstest
:Printing a table of critical values:
Partial output:
We need some additional feedback from a statistician on (a) why we get
np.nan
values for the top two rows (I assume because the critical values for these combinations ofn_trials
andalpha
are purely theoretical, and not achievable in practice), and (b) why theksone.ppf
method needsalpha
to be divided by 2? I will edit this answer to include that information.You can see though, that besides the initial missing values, this table generates identical results to the table in your question, and to the table on page 16 of this paper.