kassambara / rstatix

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

`tukey_hsd()` does not respond to different values of `conf.level` #188

Open GegznaV opened 1 year ago

GegznaV commented 1 year ago

tukey_hsd() does not respond to different values of conf.level

all.equal(
  iris |> 
    rstatix::tukey_hsd(Sepal.Length ~ Species, conf.level = 0.95, detailed = TRUE),
  iris |> 
    rstatix::tukey_hsd(Sepal.Length ~ Species, conf.level = 0.99, detailed = TRUE)
)
#> [1] TRUE

Created on 2023-05-15 with reprex v2.0.2