Nothing
rmrow.folder <- function(object, name) {
if (!is.folder(object))
stop("rmrow.folder applies to an object of class 'folder'.")
xf <- list()
for (k in 1:length(object)) {
objk <- object[[k]]
xf[[k]] <- objk[!(rownames(objk) %in% name), ]
}
attributes(xf) <- attributes(object)
return(xf)
}
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.