SciPy - Statistical Tests
Which of the following is the correct syntax to perform an independent t-test using SciPy?
Which of the following is the correct syntax to perform an independent t-test using SciPy?
ttest_ind takes two arrays as separate arguments to compare independent samples.
ttest_ind(sample1, sample2) correctly calls ttest_ind(sample1, sample2). ttest_rel(sample1, sample2) uses the related test, C has invalid syntax.
15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions