Nothing
# in delong paper x = a, y = b
my.wilcox <- function(x, y) {
if (x > y) {
return(1)
}
if (x == y) {
return(1 / 2)
}
if (x < y) {
return(0)
}
}
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.