Learn practical skills, build real-world projects, and advance your career

Way to open Jupyter NB:

jupyter notebook --notebook-dir=D:\SkillSlash\Statistics

Statistical hypothesis tests that you need in applied machine learning

Wilcoxon Sign Test:

It is used to compare the two paired Samples

Paired Samples: Same people, two different situations

H0: There is no significant difference in the calcium level of the patient initial and after 1 weeks.

H1: There is significant difference in the calcium level of the patient initial and after 1 weeks.

If p < 0.05 -> Reject H0

If p >= 0.05 -> Accept H0

import pandas as pd
df = pd.read_excel("Wilcoxon.xlsx", sheet_name=0)
df.head()