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