SciPy - Statistical Tests
What will be the p-value output of this code?
from scipy.stats import ks_2samp import numpy as np np.random.seed(0) sample1 = np.random.normal(0, 1, 100) sample2 = np.random.normal(0, 1, 100) result = ks_2samp(sample1, sample2) print(round(result.pvalue, 3))
