Nothing
gpuMi <- function(x, y = NULL, bins = 2, splineOrder = 1)
{
x <- as.matrix(x)
if(!is.null(y)) {
y <- as.matrix(y)
}
bins <- as.integer(bins)
splineOrder <- as.integer(splineOrder)
nsamples <- as.integer(nrow(x))
na <- as.integer(ncol(x))
a <- as.single(x)
b <- a
nb <- na
row_labels <- colnames(x)
if(is.null(y)) {
nb <- as.integer(ncol(x))
b <- as.single(x)
row_labels <- colnames(x)
} else {
nb <- as.integer(ncol(y))
b <- as.single(y)
row_labels <- colnames(y)
}
mi <- .C("rBSplineMutualInfo", bins, splineOrder, nsamples, na, a,
nb, b, mi = single(nb * na), PACKAGE='gputools')$mi
mi <- matrix(mi, nb, na)
rownames(mi) <- row_labels
colnames(mi) <- colnames(x)
return(mi)
}
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.