Nothing
# Quick-Xbg
# based on mtp.gtxr0
# 2019-03-01
# Jiangtao Gou
# Example: mtp.quickxbg(pvec.sorted=c(0.01, 0.06,0.3, 0.7, 0.8), alpha=0.61,TRUE)
#
mtp.quickxbg <- function (pvec.sorted, alpha, critconst, gc.is.included=FALSE) {
if (gc.is.included) {
pkev$global.count.FS <- 0
pkev$global.count.IS <- 0
}
#
#
pvec.length <- length(pvec.sorted)
#
critconst <- critconst_quick(alpha=alpha, n=pvec.length)
#
ca <- alpha*critconst
#
if (pvec.sorted[pvec.length] <= alpha) {
#
rej.idx <- pvec.length
#
return (list(rej.idx=rej.idx, init.count=1))
} # End of if
#
if (pvec.sorted[1] > ca) {
#
rej.idx <- 0
#
return (list(rej.idx=rej.idx, init.count=1))
} # End of if
#
det.idx <- BinarySearch(a=pvec.sorted[1:(pvec.length-1)], value=ca, low=1, high=pvec.length-1, gc.is.included, secondStage=FALSE)
#
#print(det.idx)
#
rej.idx <- BinarySearch(a=pvec.sorted[1:det.idx], value=alpha/(pvec.length-det.idx+1), low=1, high=det.idx, gc.is.included, secondStage=TRUE)
#
return (list(rej.idx=rej.idx, init.count=pkev$global.count.FS+1))
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.