Last updated: 21st Dec, 2023
As a data scientist, you may often come across scenarios where you need to compare the means of two independent samples. In such cases, a two independent samples t-test, also known as unpaired two samples t-test, is an essential statistical tool that can help you draw meaningful conclusions from your data. This test allows you to determine whether the difference between the means of two independent samples is statistically significant or due to chance.
In this blog, we will cover the concept of independent samples t-test, its formula, real-world examples of its applications and the Python & Excel example (using scipy.stats.ttest_ind function). We will begin with an overview of what an independent samples t-test is, followed by an explanation of two sample t-test formula and related assumptions. Then, we will explore some examples to help you understand how to apply the test in practice. At the end, you also get a calculator for finding out t-statistics and degrees of freedom for independent samples t-test for equal and unequal variance scenarios. Check out other tools on this page – Machine Learning / Statistical Tools.
The independent samples T-test is defined as statistical hypothesis testing technique in which the samples from two independent groups are compared to determine if the means of the associated populations are significantly different. The t-test compares the means of two groups, such as a control group and a treatment group, to determine if the difference between the groups’ means is statistically significant or due to random chance. For example, lets say that we have two independent groups of marketing professionals having similar qualification and we want to compare their income to determine whether their income is significantly different.
An independent samples t-test compares the means of two groups. The data are interval for the groups. – Basic and Advanced Statistical Tests
Independent samples t-test is also called unpaired two-samples t-test or just unpaired t-test because the test is performed with only two groups that are independent or unpaired or unrelated. The picture below shows the representation of two independent samples and the aspect of their means.
The picture below represents represents the need to compare the means of mathematics marks between two independent group (male and female). Independent samples t-test could be performed.
The 2 samples T-test can also be used for pairwise comparisons when the “two” samples represent the same items tested in different scenarios. The pairwise samples t-test will be dealt with in different blog.
Let’s say you want to know if two different brands of batteries have the same average life. You could take a battery from each brand, use them until they die, and record the results. This would be an extremely time-consuming process, and it’s not very likely that you’d get a large enough sample size to draw any conclusions. Another option is to use a independent-samples T-test. This test allows you to compare the averages of two groups without having to measure the batteries’ life spans yourself.
The following are a few real-life examples where independent samples T-test can be used:
The following are some assumptions related to independent two sample t-test:
The t-statistics formula for independent samples t-test is different based on whether the variance within the two different groups are same / equal or different (statistically). When the variances of populations are not equal, the two samples t-test formula (equation) for t-statistics is following:
Where X̄1 is mean of first sample, X̄2 is mean of second sample, μ1 is the mean of first population, μ2 is the mean of second population, s1 is the standard deviation of first sample, s2 is the standard deviation of second sample, n1 is the size of the first sample, n2 is the size of the second sample.
The degrees of freedom formula in two-sample t-test can be calculated as the sum of two sample sizes minus two.
Degrees of freedom, df = n1 + n2 – 2
A confidence interval for the difference between two means specifies a range of values within which the difference between the means of the two populations may lie. The difference between the means of two populations can be estimated based on the following formula:
Difference in population means = Difference in sample means +/- T*standard error
In above formula, the standard error is the square root term.
In case, the two populations’ variances or standard deviations are equal, the formula termed as pooled t-statistics is used based on the usage of pooled standard deviations of the two samples. The following is pooled t-statistics formula for independent samples t-test:
In the above formula, Sp is termed as pooled standard deviation. The formula for pooled variance can be calculated based on the following:
The formula for the degree of freedom in two sample t-test can be calculated as the sum of two sample sizes minus two.
Degrees of freedom, df = n1 + n2 – 2
Two independent samples t-test and z-test are both statistical tests used to compare the means of two independent samples. However, the choice between the two tests depends on the characteristics of the data and the assumptions that we can make about the population.
In general, a two independent samples z-test is appropriate when we know the population standard deviation and the sample sizes are large. This is because, when sample sizes are large, the sample means are typically normally distributed, and the z-test assumes normality in the population.
On the other hand, a two samples t-test is more appropriate when we do not know the population standard deviation and the sample sizes are small. This is because, when the sample size is small, the sample means may not be normally distributed, and the t-test can provide a more accurate estimate of the population mean.
Here is the summary of which tests out of z-test or t-test to use in which scenarios:
Two independent samples z-test:
Two independent samples (unpaired) t-test:
Lets say we need to compare the performance of two call centers in terms of average call lengths and find out if the difference is statistically significant or the difference is a chance occurrence. To start with, we will need to formulate the null and alternate hypothesis. Note that this will be two-tailed T-test as we are performing null hypothesis based on equality of average call length between two call centers.
Null hypothesis, H0: There is no difference between the average call length between two call centers.
Alternate hypothesis, Ha: There is a difference between the average call length and hence the performance.
We randomly select 20 calls from each call center and calculate the average call lengths. The two call centers seem to have different average call lengths. Is this difference statistically significant?
First, we need to calculate the two sample means and standard deviations:
Call Center A: Sample mean, X̄1 = 122 seconds, SD, S1 = 15 seconds, n1 = 20
Call Center B: Sample mean, X̄2 = 135 seconds, SD, S2 = 20 seconds, n2 = 20
Next, we use a two-sample t-test to determine if the difference between two sample means is statistically significant. We will use a 95% confidence level and α = 0.05.
The two-sample t-statistic is calculated as the following assuming that the standard deviations of the population is not same and the population mean is same.
t = ((135 – 122) – 0)/SQRT((20*20/20) + ((15*15)/20))
t = 13/SQRT(20 + 11.25)
t = 13/SQRT(31.25)
t = 2.3256
The value of degrees of freedom can be calculated as the following:
Degree of freedom, df = n1 + n2 -2 = 20 + 20 – 2 = 38
The critical value of a two-tailed T-test with degrees of freedom as 38 and level of significance as 0.05 comes out to be 2.0244. Since the current t-value of 2.3256 is greater than the critical value of 2.0244, one can reject the null hypothesis that there is no difference between the performance in terms of the call length time. Thus, based on the given evidence, the alternate hypothesis stands as true.
The independent (two) samples T-test output can be used to reject null hypothesis or otherwise in two different ways. They are the following:
The following represents Python code example for independent samples T-test taking into account the hypothesis discussed in the previous section. The call length observations are, however, different than the previous section. In the code below, the p-value is compared with the level of significance
import numpy as np
from scipy import stats
# Observations for call center 1
call_center1 = [12.5, 11.2, 13.1, 10.8, 11.9, 10.5, 12.4, 12.9, 11.7, 13.2]
# Observations for call center 2
call_center2 = [14.3, 13.1, 15.2, 12.7, 13.9, 13.5, 14.1, 12.8, 13.7, 15.5]
# Perform the two independent samples t-test
t_statistic, p_value = stats.ttest_ind(call_center1, call_center2)
# Print the results
print("T-statistic:", t_statistic)
print("P-value:", p_value)
# Set significance level (α)
alpha = 0.05
# Compare the p-value with the significance level
if p_value < alpha:
print("Reject the null hypothesis")
else:
print("Fail to reject the null hypothesis")
The following gets printed as an output. Note that the p-value is less than the level of significance, 0.05, and hence the null hypothesis is rejected.
Note some of the following in above Python code example:
The following Python code represents how the output of independent samples T-test can be used to reject the null hypothesis or otherwise by comparing the value of t-statistics and the critical region (threshold).
import numpy as np
import matplotlib.pyplot as plt
from scipy import stats
# Observations for call center 1
call_center1 = [12.5, 11.2, 13.1, 10.8, 11.9, 10.5, 12.4, 12.9, 11.7, 13.2]
# Observations for call center 2
call_center2 = [14.3, 13.1, 15.2, 12.7, 13.9, 13.5, 14.1, 12.8, 13.7, 15.5]
# Perform the two independent samples t-test
t_statistic, p_value = stats.ttest_ind(call_center1, call_center2)
# Set significance level (α)
alpha = 0.05
# Compute critical region values
df = len(call_center1) + len(call_center2) - 2
critical_region = stats.t.ppf(1 - alpha / 2, df)
# Print the results
print("T-statistic:", t_statistic)
print("Critical region (threshold):", critical_region)
# Compare the absolute value of t-statistic with the critical region
if abs(t_statistic) > critical_region:
print("Reject the null hypothesis")
else:
print("Fail to reject the null hypothesis")
The output shows like the following. Note that the value of t-statistics (-4.3797) is less than the critical region value (negative of 2.1009 = -2.1009 owing to two-tailed t-test) and hence the null hypothesis will be rejected.
The above can also be understood using the following plot which shows that the value of t-statistics is less than that of the critical region on the negative side and hence, null hypothesis can be rejected,
Performing a two-sample t-test in Excel involves a few key steps. I’ll guide you through these using a real-world example. Let’s consider a scenario where we want to compare the mean scores of two different groups, such as test scores from two different classrooms.
Suppose we have the following data for two classes, Xth A and Xth B for Mathematics:
We want to determine if there is a statistically significant difference in the average scores between the two classrooms. The following steps can be taken:
=AVERAGE(A2:A6)
for the mean of Classroom A and =STDEV.S(A2:A6)
for the standard deviation. Repeat for Classroom B.T.TEST
function.=T.TEST(array1, array2, tails, type)
array1
and array2
are the ranges containing your data.tails
specifies the number of distribution tails. Use 1 for a one-tailed test and 2 for a two-tailed test.type
is the kind of t-test. Use 1 for paired, 2 for two-sample equal variance (homoscedastic), and 3 for two-sample unequal variance (heteroscedastic). For our example, we would typically use 3.Let’s say your data is in cells A2:A6 for Classroom A and B2:B6 for Classroom B, and you want to perform a two-tailed test assuming unequal variances. We used the value of type as 2 (2 for two-sample equal variance (homoscedastic)). You would enter:
=T.TEST(A2:A6, B2:B6, 2, 2)
The result will be your p-value, which you can use to determine statistical significance.
The following snapshot demonstrates the calculation in an excel spreadsheet.
Here are few most commonly asked FAQs related to independent samples t-test:
Calculate the t-statistics and degrees of freedom for independent samples t-test for equal and unequal variances scenarios.
The two samples t-test for independent samples is a statistical method for comparing two different populations. The t-test can be used when the population standard deviations are not known and the sample size is smaller (less than 30). The two sample t-statistic calculation depends on given degrees of freedom, df = n1 + n2 – 2. If the value of two samples t-test for independent samples exceeds critical T at alpha level, then you can reject null hypothesis that there is no difference between two data sets (H0). Otherwise if two sample T-statistics is less than or equal to critical T at alpha level, then one cannot reject H0; this means both values could have come from same distribution in which case any observed difference would be due to chance alone. Different formulas are required to be used for performing t-test for two independent samples based on whether the variances of two populations are equal or otherwise.
In recent years, artificial intelligence (AI) has evolved to include more sophisticated and capable agents,…
Adaptive learning helps in tailoring learning experiences to fit the unique needs of each student.…
With the increasing demand for more powerful machine learning (ML) systems that can handle diverse…
Anxiety is a common mental health condition that affects millions of people around the world.…
In machine learning, confounder features or variables can significantly affect the accuracy and validity of…
Last updated: 26 Sept, 2024 Credit card fraud detection is a major concern for credit…
View Comments
How can we cite this article
You can use citation styles as appropriate. Thank you
Kumar, Ajitesh. "Two independent samples t-tests: Formula & Examples." Vitalflux.com, 22 September 2023, https://www.vitalflux.com/two-independent-samples-t-tests-formula-examples/.