@@ -217,7 +217,7 @@ Consider now we are interested in demonstrating equivalence for at least $k=1$ o
217217 ctype = "ROM", # Test type (Ratio of Means)
218218 vareq = TRUE, # Assume equal variances
219219 lognorm = TRUE, # Log-normal distribution assumption
220- k = 1, # Reject at least one null hypothesis
220+ k = c("Comparison" = 1), # Reject at least one null hypothesis
221221 adjust = "bon", # Bonferroni adjustment method
222222 ncores = 1, # Number of cores for computation
223223 nsim = 1000, # Number of stochastic simulations
@@ -240,7 +240,7 @@ As mentioned in [the Introduction](../articles/intopkg.html), the Bonferroni cor
240240 ctype = "ROM", # Test type (Ratio of Means)
241241 vareq = TRUE, # Assume equal variances
242242 lognorm = TRUE, # Log-normal distribution assumption
243- k = 1, # Reject at least one null hypothesis
243+ k = c("Comparison" = 1), # Reject at least one null hypothesis
244244 adjust = "k", # Adjustment method
245245 ncores = 1, # Number of cores for computation
246246 nsim = 1000, # Number of stochastic simulations
@@ -267,7 +267,7 @@ In this example, the sequential adjustment can be implemented by setting the fun
267267 ctype = "ROM", # Test type (Ratio of Means)
268268 vareq = TRUE, # Assume equal variances
269269 lognorm = TRUE, # Log-normal distribution assumption
270- k = 1, # Reject at least one null hypothesis
270+ k = c("Comparison" = 1), # Reject at least one null hypothesis
271271 adjust = "seq", # Sequential adjustment method
272272 type_y = c("AUCinf" = 1, "AUClast" = 2, "Cmax" = 2), # Endpoint types
273273 ncores = 1, # Number of cores for computation
0 commit comments