Use code: AXEUSCESTUDENT2025 for 10% off your next purchase!

Research Forum

Use code: AXEUSCE-AI for 10% off your next purchase!

what is dependent a...
 
Notifications
Clear all

what is dependent and independent T test? Python Coding for T test?

1 Posts
1 Users
0 Reactions
536 Views
(@mdyasarsattar)
Posts: 33
Trusted Member
Topic starter
 

When to Use Which?

  1. Use Independent T-Test when comparing two separate groups (e.g., male vs. female, control vs. treatment).
  2. Use Dependent T-Test when comparing the same group before and after an event (e.g., pre-test vs. post-test).

1️⃣ Independent T-Test (Unpaired)

Used when comparing two separate, independent groups.

Example: Comparing blood pressure between two independent groups (e.g., treatment vs. control)

python
import numpy as np
import scipy.stats as stats

# Sample data (independent groups)
group1 = [120, 125, 130, 128, 127, 122, 126] # Treatment group
group2 = [135, 138, 140, 132, 136, 139, 141] # Control group

# Perform Independent T-Test
t_stat, p_value = stats.ttest_ind(group1, group2)

print(f"T-Statistic: {t_stat}")
print(f"P-value: {p_value}")

# Interpretation
alpha = 0.05
if p_value < alpha:
print("Reject the null hypothesis: The two groups have significantly different means.")
else:
print("Fail to reject the null hypothesis: No significant difference between groups.")

 

2️⃣ Dependent T-Test (Paired)

Used when comparing the same group before and after an intervention.

Example: Comparing students' test scores before and after a training program.

# Sample data (paired observations)
before = [85, 88, 90, 78, 82, 87, 91] # Scores before training
after = [90, 92, 95, 82, 85, 90, 96] # Scores after training

# Perform Paired T-Test
t_stat, p_value = stats.ttest_rel(before, after)

print(f"T-Statistic: {t_stat}")
print(f"P-value: {p_value}")

if p_value < alpha:
print("Reject the null hypothesis: The training had a significant effect.")
else:
print("Fail to reject the null hypothesis: No significant difference before and after training.")

 

 

 
Posted : 02/03/2025 7:34 am
Share:
Need Help?

    Get a Quote







    Price: $0