Nothing
#' All zero difference check
#'
#' Checks if differences dataframe is all zeroes.
#' @param diff Differences dataframe
#' @return Boolean. TRUE if all zeroes, FALSE otherwise.
#' @export
checkZeroDiff <- function(diff){
if(all(diff$value == 0)) return(TRUE) else return(FALSE)
}
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.