Welch's t-test: Difference between revisions

Content added Content deleted
(clarified that this page is about integration, is partly a translation of an R function)
Line 1: Line 1:
{{draft task}}
{{draft task}}
Given two lists of data, calculate the [[wp:p-value|p-value]] used for [[wp:Welch's_t_test|Welch's t-test]] (for example, other t-tests can be used as well).
Given two lists of data, calculate the [[wp:p-value|p-value]] used for [[wp:Welch's_t_test|Welch's t-test]] (for example, other t-tests can be used as well). This is meant to translate R's <code>t.test(vector1,vector2, alternative="two.sided", var.equal=FALSE)</code> for calculation of the p-value.


'''Task Description'''<br>
'''Task Description'''<br>