我使用t.test()函数来计算以下的t检验:
t.test(iris$Petal.Width[iris$Species == "setosa"],
iris$Petal.Width[iris$Species == "versicolor"])
有150行(杂色100个,setosa 50个)。
当我检查t检验的输出时,这里的自由度是74.755。我想知道如何获得这个值,因为我想手动实现t检验。我设法正确地获得了t统计量,但我也希望获得p值。对于我的p值,我使用df作为148(n-2)。它与t.test()没有相同的结果。