Closed Angela446-lgtm closed 1 year ago
pval = itest(df.iloc[:,ix].values, df.iloc[:,jx].values, test_args={'statistic': 'mixed_mi', 'n_jobs': 8}) is_independent = (pval >= 1.- 0.95) #confidence_level = 0.95
So, the output is True. So, the two variables are independent.
Which is the null hypothesis here?
The null hypothesis usually refers to independence
pval = itest(df.iloc[:,ix].values, df.iloc[:,jx].values, test_args={'statistic': 'mixed_mi', 'n_jobs': 8}) is_independent = (pval >= 1.- 0.95) #confidence_level = 0.95
So, the output is True. So, the two variables are independent.
Which is the null hypothesis here?