Obtaining the P values for the t stat
    37 vues (au cours des 30 derniers jours)
  
       Afficher commentaires plus anciens
    
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
Réponse acceptée
  dpb
      
      
 le 10 Juin 2020
        p = 1-tcdf(t,n-1) % Probability of larger t-statistic
requires Statistics Toolbox...
2 commentaires
  O.Hubert
      
 le 24 Oct 2022
				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).
Plus de réponses (0)
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!




