n = 10000
x = rexp(n, 1)
Navae_ci_mean(x, bound_K = 9, alpha = 0.2)
Navae_ci_mean(x, bound_K = 9, alpha = 0.2, a = 1 + n^(-2/5))
# Same as:
Navae_ci_mean(x, bound_K = 9, alpha = 0.2, a = list(power_of_n_for_b = -2/5))
# plug-in for K ( = data-driven choice of K)
Navae_ci_mean(x, alpha = 0.2)
listParams1 = list(
choice = "best",
setup = list(continuity = FALSE, iid = TRUE, no_skewness = FALSE),
regularity = list(C0 = 1, p = 2),
eps = 0.1)
listParams2 = list(
choice = "best",
setup = list(continuity = TRUE, iid = TRUE, no_skewness = FALSE),
regularity = list(kappa = 0.99), eps = 0.1)
Navae_ci_mean(x, alpha = 0.1, param_BE_EE = listParams1)
Navae_ci_mean(x, alpha = 0.1, param_BE_EE = listParams2)
Navae_ci_mean(x, alpha = 0.05, param_BE_EE = listParams1)
Navae_ci_mean(x, alpha = 0.05, param_BE_EE = listParams2)
Run the code above in your browser using DataLab