Nothing
aslx.grads <- function(y, x, a, be, gama, coords, k = 10) {
W <- CompositionalSR::contiguity(coords, k)
Wx <- W %*% x
nam <- colnames(x)
if ( is.null( nam ) ) {
p <- NCOL(x)
nam <- c( paste("X", 1:p, sep = ""), paste("WX", 1:p, sep = "") )
} else nam <- c(nam, paste("W", nam, sep = "") )
X <- cbind(x, Wx)
colnames(X) <- nam
be <- rbind(be, gama)
CompositionalSR::ar.grads(y, X, a, be)
}
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.