#' @importFrom Rcpp evalCpp
#' @useDynLib adjVUS, .registration = TRUE
#' @export
vus <- function(x, y, z){
if(any(is.na(x)) | any(is.na(y)) | any(is.na(z))) return(NA)
else return(vusC_full(x, y, z))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.