Nothing
f_dmss_dW <-
function (U, Xstar, W, yerrs, cc)
{
d <- ncol(U)
m <- ncol(W)
N <- nrow(U)
Wout <- matrix(0, d, m)
Cout <- .C("dmss_dW_b", as.integer(N), as.integer(d), as.integer(m),
as.double(as.vector(U)), as.double(as.vector(W)), as.double(as.vector(Xstar)),
as.double(yerrs), as.double(cc), Wout = as.double(as.vector(Wout)))
Wout <- Cout[["Wout"]]
dim(Wout) <- c(d, m)
colnames(Wout) <- colnames(W)
return(Wout)
}
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.