March 2020
Beginner to intermediate
352 pages
8h 40m
English
The T-test is a type of test most commonly used in inferential statistics. This test is most commonly used in scenarios where we need to understand if there is a significant difference between the means of two groups. For example, say we have a dataset of students from certain classes. The dataset contains the height of each student. We are checking whether the average height is 175 cm or not:
We have listed all the parameters. Now, we can use hypothesis testing:
import numpy as npheight = np.array([172, ...Read now
Unlock full access