# \donttest{
# CASE 1: Only trend in the dependence structure
# Sample data:
DependenceStructure <- generate_data("dependenceStructure", n = 50)
width <- 10
# Perform the mot test:
mot <- MOT_test(DependenceStructure, covar = NULL, width, alpha = 0.05, Nbs = 1000)
print(mot)
# CASE 2: Only trend in the marginal distributions
# Sample data:
MarginalTrend <- generate_data("marginalTrend", n = 50)
# Perform the mot test:
mot <- MOT_test(MarginalTrend, width = width)
print(mot)
# CASE 3: No trend
# Sample data:
NoTrend <- generate_data("noTrend", n = 50)
# Perform the mot test:
mot <- MOT_test(NoTrend, width = width)
print(mot)
# }
Run the code above in your browser using DataLab