SciPy - Statistical Tests
Identify the error in this code snippet that attempts to perform a KS test:
from scipy.stats import ks_2samp sample1 = [1, 2, 3] sample2 = [4, 5, 6] result = ks_2samp(sample1) print(result.statistic)
