Nothing
# Rom-X
# 2019-02-26
# Jiangtao Gou
# Example: mtp.romx(pvec.sorted=rev(c(0.97,0.83,0.79,0.73,0.61,0.59,0.47,0.37,0.31,0.29,0.23,0.19,0.13,0.07,0.03)), alpha=0.30)
#
mtp.romx <- function (pvec.sorted, alpha) {
pvec.length <- length(pvec.sorted)
cv <- alpha*critconst_rom(alpha=alpha, n=pvec.length)
#
if (pvec.sorted[pvec.length] <= alpha) {
#
rej.idx <- pvec.length
#
return (list(rej.idx=rej.idx, init.count=1))
} # End of if
for (i in 2:pvec.length) {
if (pvec.sorted[pvec.length-i+1] <= cv[i]) {
#
rej.idx <- pvec.length-i+1
#
return (list(rej.idx=rej.idx, init.count=i))
} # End of if
}
return (list(rej.idx=0, init.count=pvec.length))
}
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.