Nothing
CliffsDelta <- function(x,
y
) {
nx <- length(x)
ny <- length(y)
nxny <- nx*ny
preSumPScSum <- 0
preSumBiggersSum <- 0
for (i in 1:nx) {
rowI <- -sign(y - x[i])
preSumPScSum <- preSumPScSum + sum(rowI < 0)
preSumBiggersSum <- preSumBiggersSum + sum(rowI > 0)
}
PSc <- preSumPScSum/nxny
PSbigger <- preSumBiggersSum/nxny
dc <- PSc - PSbigger
return(dc)
}
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.