kassambara / rstatix

Pipe-friendly Framework for Basic Statistical Tests in R
https://rpkgs.datanovia.com/rstatix/
432 stars 51 forks source link

Different number of stars between rastatix::anova_test and stats::aov #164

Open hchri opened 1 year ago

hchri commented 1 year ago

There is a different number of significance stars between rstatix::anova_test and stats::aov

rstatix::anova_test(iris, Sepal.Length ~ Species)
#> Coefficient covariances computed by hccm()
#> ANOVA Table (type II tests)
#> 
#>    Effect DFn DFd       F        p p<.05   ges
#> 1 Species   2 147 119.265 1.67e-31     * 0.619

summary(aov(Sepal.Length ~ Species, data = iris))
#>              Df Sum Sq Mean Sq F value Pr(>F)    
#> Species       2  63.21  31.606   119.3 <2e-16 ***
#> Residuals   147  38.96   0.265                   
#> ---
#> Signif. codes:  0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1