what conclusion can be drawn from the resulting t-stats value When ttest_ind is applied on two independent series?
As you can read here, the scipy.stats.ttest_ind
has two outputs
Very intuitively, you can read the t-statistic as a normalized difference of averages in both populations, considering their variances and sizes:
The higher is the value of the t-statistic, the more serious is the difference.
The p-value makes this intuition more explicit: it is the probability that the difference of averages can be considered as zero. If the p-value is bellow a threshold, e.g. 0.05, we say that the difference in not zero.