R Under development (unstable) (2024-01-07 r85787 ucrt) -- "Unsuffered Consequences" Copyright (C) 2024 The R Foundation for Statistical Computing Platform: x86_64-w64-mingw32/x64 R is free software and comes with ABSOLUTELY NO WARRANTY. You are welcome to redistribute it under certain conditions. Type 'license()' or 'licence()' for distribution details. R is a collaborative project with many contributors. Type 'contributors()' for more information and 'citation()' on how to cite R or R packages in publications. Type 'demo()' for some demos, 'help()' for on-line help, or 'help.start()' for an HTML browser interface to help. Type 'q()' to quit R. > library(ThermalSampleR) > library(testthat) > coreid = ThermalSampleR::coreid_data > > ############################################################################################ > # EQUIV_TOST TESTS > ############################################################################################ > > tte = equiv_tost( + # Which dataframe does the data come from? + data = coreid, + # Provide the column name containing the taxon ID + groups_col = col, + # Provide the name of the taxon to be tested + groups_which = "Catorhintha schaffneri_APM", + # Provide the name of the column containing the response variable (e.g CTmin data) + response = response, + # Define the skewness parameters + skews = c(1,10), + # Define the equivalence of subsets to full population CT estimate (unit = degree Celcius) + equiv_margin = 1, + # Size of the population to sample (will test subsamples of size pop_n - x against pop_n for equivalence). Defaults to population size = 30 + pop_n = 5 + ) There were 50 or more warnings (use warnings() to see the first 50) > > ######################################## > # Test for the class of tte > ######################################## > testthat::test_that("tte output is the ggplot class", { + + testthat::expect_true(inherits(tte, "ggplot")) + }) Test passed 🎉 > > > testthat::test_that("No error is thrown in equiv_tost function", { + + # Call the function and check for errors + testthat::expect_no_error(equiv_tost( + # Which dataframe does the data come from? + data = coreid, + # Provide the column name containing the taxon ID + groups_col = col, + # Provide the name of the taxon to be tested + groups_which = "Catorhintha schaffneri_APM", + # Provide the name of the column containing the response variable (e.g CTmin data) + response = response, + # Define the skewness parameters + skews = c(1,10), + # Define the equivalence of subsets to full population CT estimate (unit = degree Celcius) + equiv_margin = 1, + # Size of the population to sample (will test subsamples of size pop_n - x against pop_n for equivalence). Defaults to population size = 30 + pop_n = 5 + )) + }) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: ▆ 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ â””─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "greater" alternative. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.sub(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── The sample skew is less than or equal to 0. Chen's test is not appropriate for a "lower" confidence interval. Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─parallel::mclapply(...) 14. └─base::lapply(X, FUN, ...) 15. └─ThermalSampleR (local) FUN(X[[i]], ...) 16. ├─base::do.call(...) 17. └─parallel::mclapply(...) 18. └─base::lapply(X, FUN, ...) 19. └─ThermalSampleR (local) FUN(X[[i]], ...) 20. ├─base::do.call(...) 21. └─base::lapply(...) 22. └─ThermalSampleR (local) FUN(X[[i]], ...) 23. └─base::sapply(...) 24. └─base::lapply(X = X, FUN = FUN, ...) 25. └─ThermalSampleR (local) FUN(X[[i]], ...) 26. ├─base::tryCatch(...) 27. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. └─EnvStats::chenTTest(...) 31. └─EnvStats:::chenTTest.ci(...) ── Warning: No error is thrown in equiv_tost function ────────────────────────── Removed 4 rows containing missing values (`geom_line()`). Backtrace: â–† 1. ├─testthat::expect_no_error(...) 2. │ └─testthat:::expect_no_(...) 3. │ └─testthat:::quasi_capture(enquo(object), NULL, capture) 4. │ ├─testthat (local) .capture(...) 5. │ │ └─rlang::try_fetch(...) 6. │ │ ├─base::tryCatch(...) 7. │ │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. │ │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. │ │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 10. │ │ └─base::withCallingHandlers(...) 11. │ └─rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 12. └─ThermalSampleR::equiv_tost(...) 13. └─cowplot::plot_grid(plot_mean, plot_var, nrow = 1) 14. └─cowplot::align_plots(...) 15. └─base::lapply(...) 16. └─cowplot (local) FUN(X[[i]], ...) 17. ├─cowplot::as_gtable(x) 18. └─cowplot:::as_gtable.default(x) 19. ├─cowplot::as_grob(plot) 20. └─cowplot:::as_grob.ggplot(plot) 21. └─ggplot2::ggplotGrob(plot) 22. ├─ggplot2::ggplot_gtable(ggplot_build(x)) 23. └─ggplot2:::ggplot_gtable.ggplot_built(ggplot_build(x)) 24. └─ggplot2:::by_layer(...) 25. ├─rlang::try_fetch(...) 26. │ ├─base::tryCatch(...) 27. │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers) 28. │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 29. │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler) 30. │ └─base::withCallingHandlers(...) 31. └─ggplot2 (local) f(l = layers[[i]], d = data[[i]]) 32. └─l$draw_geom(d, layout) 33. └─ggplot2 (local) draw_geom(..., self = self) 34. └─self$geom$handle_na(data, self$computed_geom_params) 35. └─ggplot2 (local) handle_na(..., self = self) 36. └─cli::cli_warn("Removed {sum(!kept)} row{?s} containing missing values ({.fn {snake_class(self)}}).") > > proc.time() user system elapsed 49.76 0.43 50.20