Skip to content
New issue

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

shapiro test changed in MANOVA #306

Merged
merged 3 commits into from
May 7, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
also update bivariate normality
  • Loading branch information
JohnnyDoorn committed May 7, 2024
commit 772eb5956846149a3dc3b81d73baa1dcf19abc8b
14 changes: 7 additions & 7 deletions tests/testthat/test-correlation.R
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,13 @@ test_that("Shapiro-Wilk Test for Multivariate Normality table results match", {
test_that("Shapiro-Wilk Test for Bivariate Normality table results match", {
table <- results[["results"]][["assumptionsContainer"]][["collection"]][["assumptionsContainer_pairwiseShapiro"]][["data"]]
jaspTools::expect_equal_tables(table,
list(0.901474720121716, 1.65965808553626e-06, "-", "contNormal", "contGamma",
0.966220519133756, 0.0114432512312019, "-", "contNormal", "contcor1",
0.966282842281815, 0.0561697740909883, "-", "contNormal", "debMiss30",
0.873628887299087, 9.84839266547295e-08, "-", "contGamma", "contcor1",
0.862918050703853, 1.7604538483754e-06, "-", "contGamma", "debMiss30",
0.990143883746405, 0.861444767503725, "-", "contcor1", "debMiss30"
))
list(0.920133622718739, 9.26266088028011e-09, "-", "contNormal", "contGamma",
0.975095766862836, 0.0197633225756002, "-", "contNormal", "contcor1",
0.97421223116433, 0.108462090826961, "-", "contNormal", "debMiss30",
0.930015026431291, 8.89751236523928e-08, "-", "contGamma", "contcor1",
0.933648725575745, 2.37704417812631e-05, "-", "contGamma", "debMiss30",
0.98166946114741, 0.416182497522526, "-", "contcor1", "debMiss30"
))
})

test_that("Correlation plot matches", {
Expand Down
Loading