We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
expr_anova_parametric
conf.level
set.seed(123) library(statsExpressions) expr_anova_parametric(mtcars, cyl, wt, conf.level = 0.90) #> paste(NULL, italic("F")["Welch"], "(", "2", ",", "18.97", ") = ", #> "20.25", ", ", italic("p"), " = ", "< 0.001", ", ", widehat(omega["p"]^2), #> " = ", "0.58", ", CI"["90%"], " [", "0.36", ", ", "0.71", #> "]", ", ", italic("n")["obs"], " = ", 32L) expr_anova_parametric(mtcars, cyl, wt, conf.level = 0.95) #> paste(NULL, italic("F")["Welch"], "(", "2", ",", "18.97", ") = ", #> "20.25", ", ", italic("p"), " = ", "< 0.001", ", ", widehat(omega["p"]^2), #> " = ", "0.58", ", CI"["95%"], " [", "0.36", ", ", "0.71", #> "]", ", ", italic("n")["obs"], " = ", 32L)
Created on 2020-04-22 by the reprex package (v0.3.0.9001)
The text was updated successfully, but these errors were encountered:
Additionally, default is not 0.95, but 0.90 :-/
0.95
0.90
Sorry, something went wrong.
0ebdc6f
No branches or pull requests
Created on 2020-04-22 by the reprex package (v0.3.0.9001)
The text was updated successfully, but these errors were encountered: