Nothing
weak <- function(from, to, domain, markers = FALSE) {
stopifnot(is.atomic(from))
stopifnot(is.atomic(to))
stopifnot(mode(from) == mode(to))
stopifnot(length(from) == length(to))
stopifnot(all(! is.na(from)))
stopifnot(all(! is.na(to)))
if (missing(domain)) {
domain <- union(from, to)
} else {
stopifnot(all(from %in% domain))
stopifnot(all(to %in% domain))
}
efrom <- match(from, domain)
eto <- match(to, domain)
out <- .C(C_weak, from = as.integer(efrom), to = as.integer(eto),
lenfrom = as.integer(length(efrom)), result = integer(length(domain)),
lenresult = as.integer(length(domain)))
if (markers) {
sir <- sort(unique(out$result))
sout <- match(out$result, sir)
} else {
sout <- split(domain, out$result)
names(sout) <- NULL
}
return(sout)
}
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.