Welch's t-test: Difference between revisions

Content added Content deleted
mNo edit summary
m (contradiction with the following sentence (it's a translation of a specific R command))
Line 1: Line 1:
{{draft task|Probability and statistics}}
{{draft task|Probability and statistics}}


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.
Given two lists of data, calculate the [[wp:p-value|p-value]] used for [[wp:Welch's_t_test|Welch's t-test]]. 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>