You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The function two_sample_test can't seem to execute the KS test. The problem it runs into, apparently, is that the function compute_null_distribution does not return a numpy array when executed for a KS test. It works as expected when I added the following block:
if not isinstance(test_null, np.ndarray):
test_null = np.array(test_null)
The text was updated successfully, but these errors were encountered:
The function
two_sample_test
can't seem to execute the KS test. The problem it runs into, apparently, is that the functioncompute_null_distribution
does not return a numpy array when executed for a KS test. It works as expected when I added the following block:The text was updated successfully, but these errors were encountered: