Summary function.
## S3 method for class 'ciee' summary(object = NULL, ...)
Formatted data frames of the results of all computed methods.
maf <- 0.2 n <- 1000 dat <- generate_data(n = n, maf = maf) datX <- data.frame(X = dat$X) names(datX)[1] <- "X1" for (i in 2:10){ X <- stats::rbinom(n, size = 2, prob = maf) datX$X <- X names(datX)[i] <- paste("X", i, sep="") } results1 <- ciee(Y = dat$Y, X = datX$X1, K = dat$K, L = dat$L) summary(results1) results2 <- ciee_loop(Y = dat$Y, X = datX, K = dat$K, L = dat$L) summary(results2)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.