Independent Two-Sample t-Test Algorithm
(Redirected from independent two-sample t-test algorithm)
Jump to navigation
Jump to search
An Independent Two-Sample t-Test Algorithm is a statistical hypothesis testing algorithm that can be implemented by an independent two-sample t-test system (to solve an independent two-sample t-test task).
- Context:
- It can (typically) calculate an independent two-sample t-statistic.
- It can range from being a Composite Independent Two-Sample t-Test Algorithms to being a Singular Independent Two-Sample t-Test Algorithm.
- It can also include the calculation of the p-value.
- …
- Example(s):
- the algorithm followed by SciPy.stats'
scipy.stats.ttest_ind()
- the algorithm followed by SciPy.stats'
- Counter-Example(s):
- See: One-Sample t-Test Task, Parametric Statistical Test, Computing System, Parameter Optimization System.
References
2017a
- (Scipy docs, 2017) ⇒ https://docs.scipy.org/doc/scipy/reference/generated/scipy.stats.ttest_ind.html
- scipy.stats.ttest_ind(a, b, axis=0, equal_var=True, nan_policy='propagate')[source]
- Calculates the T-test for the means of two independent samples of scores. This is a two-sided test for the null hypothesis that 2 independent samples have identical average (expected) values. This test assumes that the populations have identical variances by default.
2017b
- (Varoquaux, 2017) ⇒ Retrieved on 2017-02-16 from "Statistics in Python" http://www.scipy-lectures.org/packages/statistics/index.html#student-s-t-test-the-simplest-statistical-test
- QUOTE: 3.1.2.1.2. 2-sample t-test: testing for difference across populations - We have seen above that the mean VIQ in the male and female populations were different. To test if this is significant, we do a 2-sample t-test with scipy.stats.ttest_ind() …
2015
- (Hamelg, 2015) ⇒ Retrieved on 2017-02-26 from "Python for Data Analysis Part 24: Hypothesis Testing and the T-Test", http://hamelg.blogspot.ca/2015/11/python-for-data-analysis-part-24.html
- A two-sample t-test investigates whether the means of two independent data samples differ from one another. In a two-sample test, the null hypothesis is that the means of both groups are the same. Unlike the one sample-test where we test against a known population parameter, the two sample test only involves sample means. You can conduct a two-sample t-test by passing with the stats.ttest_ind() function.