Hello,
Do you know how to use this function with non-rectangular arrays (not the same number of values for the different x)?
In[10]:= KolmogorovSmirnovTest[{{2, 4, 3}, {3, 9, 4}}, {{2, 4, 3}, {3,
9, 4}}]
Out[10]= 1.
but
In[11]:= KolmogorovSmirnovTest[{{2, 4, 3, 4}, {3, 9, 4}}, {{2, 4,
3}, {3, 9, 4}}]
During evaluation of In[11]:= KolmogorovSmirnovTest::rctnln: The argument {{2,4,3,4},{3,9,4}} at position 1 should be a rectangular array of real numbers with length greater than the dimension of the array. >>
Out[11]= KolmogorovSmirnovTest[{{2, 4, 3, 4}, {3, 9, 4}}, {{2, 4,
3}, {3, 9, 4}}]
The input arguments abide by the syntax of the function for multivariate data in both cases ( https://reference.wolfram.com/language/ref/KolmogorovSmirnovTest.html ).
Thank you