#' Replace infinite numbers with NA
#'
#' @param x the values to be checked
#'
#' @return the modified list of values
#' @export
replace_infinite_numbers = function(x){
ifelse(is.finite(x),x,NA)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.