SciPy - Statistical Tests
What is the output of this code snippet?
from scipy.stats import ks_2samp sample1 = [10, 20, 30, 40, 50] sample2 = [15, 25, 35, 45, 55] result = ks_2samp(sample1, sample2) print(round(result.statistic, 2))
