Nothing
`slice` <-
function(x, MARGIN, n)
{
result <- x[slice.index(x, MARGIN) == n]
if(length(result) == prod(dim(x)[-MARGIN]))
{
dim(result) <- dim(x)[-MARGIN]
dimnames(result) <- dimnames(x)[-MARGIN]
}
return(result)
}
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.