Obtaining the P values for the t stat
167 ビュー (過去 30 日間)
古いコメントを表示
I have both the tstat and the degrees of freedom, is there a quick way to find the P value of a two tailed hypothesis at a significance of 0.05
0 件のコメント
採用された回答
dpb
2020 年 6 月 10 日
p = 1-tcdf(t,n-1) % Probability of larger t-statistic
requires Statistics Toolbox...
2 件のコメント
O.Hubert
2022 年 10 月 24 日
It should be noted that t should be positive to obtain sensible results and yes, p should be multiplied by 2 to get a two-tailed test.
To have t positive, replace it by abs(t).
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Testing Frameworks についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!