#' @title Lower bound for the number of true discoveries
#' @description Calculates (1-alpha) lower confidence bounds for the set-wise of false null hypotheses.
#' @usage dI(ix, cv, pvalues, iterative, approx, ncomb, ...)
#' @param ix numeric vector. It refers to the set-wise hypotheses considered.
#' @param cv numeric vector. It refers to the critical vector computed by \code{\link{criticalVector}}.
#' @param pvalues If \code{iterative = TRUE} matrix of pvalues with dimensions \eqn{m \times B}. If \code{iterative = FALSE} vector of \eqn{m} observed pvalues.
#' @param iterative Boolean value. If \code{iterative = TRUE}, the iterative method for improvement of confidence envelopes is applied. Default @FALSE.
#' @param approx Boolean value. Default @TRUE. If you are treating high dimensional data, we suggest to put \code{approx = TRUE} to speed up the computation time. Default @TRUE
#' @param ncomb Numeric value. If \code{approx = TRUE}, you must decide how many random subcollections (level of approximation) considered. Default 100.
#' @param ... further arguments for the iterative approach, i.e., \code{iterative = TRUE}.
#' @export
#' @author Angela Andreella
#' @return numeric value: the lower confidence bound for the number of true discoveries concerning the cluster \code{ix} specified.
#' @importFrom utils combn
#' @examples
#'db <- simulateData(pi0 = 0.7, m = 100, n = 20, rho = 0)
#'out <- signTest(X = db)
#'pv <- cbind(out$pv, out$pv_H0)
#'cv <- criticalVector(pvalues = pv, family = "simes", lambda = 0.1, alpha = 0.1)
#'dI(ix = c(1:100), cv = cv, pvalues = pv)
dI <- function(ix, cv, pvalues, iterative = FALSE, approx = TRUE, ncomb = 100, ...){
## Default hidden arguments
family=list(...)$family
delta=list(...)$delta
alpha=list(...)$alpha
if(!iterative){
family <- delta <- alpha <- NULL
}
if(iterative & !(exists("family", mode = "character") & exists("delta") & exists("alpha"))){
stop("Please specify the family of confidence bounds, delta and alpha levels if you want to use the iterative approach")
}
if(!iterative){
d <- permDiscoveries(ix = ix, cv = cv, praw = pvalues)
}else{
d <- permDiscoveries(ix = ix, cv = cv, praw = pvalues[,1])
}
if(iterative){
d_seq <- c()
d_seq[1] <- d
it <- 1
dist <- Inf
while(dist !=0 & (d_seq[it] != length(ix))) {
if(approx == TRUE){
Kcomb <- replicate(ncomb, sample(ix,size = length(ix) - d_seq[it], replace=FALSE),
simplify="matrix")
}else{
Kcomb <- combn(ix, length(ix) - d_seq[it])
ncomb <- ncol(Kcomb)
}
#Create complementry set: combinations + all not in ix
m <- dim(pvalues)[1]
R <- which(!(c(1:m) %in% ix))
lambda_kc <- sapply(c(1:ncomb), function(x) {
if(is.matrix(Kcomb)){
Kc <- Kcomb[,x]
}else{Kc <- Kcomb[x]}
Kc <- unique(c(Kc, R))
P_Kc <- matrix(pvalues[Kc,], nrow= length(Kc), ncol = dim(pvalues)[2])
lambdaCalibrate(X = P_Kc, family = family, alpha = alpha, delta = delta, m = dim(pvalues)[1])
})
lambda <- max(lambda_kc)
cv <- criticalVector(pvalues= pvalues, family= family,
alpha = alpha, delta = delta, lambda = lambda, m = dim(pvalues)[1])
d_seq[it +1] <- permDiscoveries(ix = ix,cv = cv, praw = pvalues[,1])
dist <- d_seq[it] - d_seq[it+1]
it <- it + 1
}
d <- max(d_seq)
}
return(d)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.