Nothing
#' Get the revision number
#'
#' @param wb The path to the Tableau workbook file [.twb].
#'
#' @return The revision number
#' @export
#'
#' @family xml
get_revision <- function(wb) {
proc <- make_rootnodes(wb)
nodenames <- get_nodenames(proc)
xy <- which(nodenames == "repository-location")
Revision <- cbind(XML::xpathSApply(proc[[xy]], ".", XML::xmlGetAttr, "revision"))
return(as.double(Revision))
}
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.