#' @export
rbindDSS <- function(x,y, new.colnames = NULL){
new.colnames <- .decode.arg(new.colnames)
if (!is.null(new.colnames)){
colnames(x) <- new.colnames
colnames(y) <- new.colnames
}
ret <- rbind(x,y)
if(!.dsBase_isValidDSS(ret)){
ret <- ret[NA, NA]
}
ret
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.