#' sum_nona()
#'
#' take to sum, but ignore na values. Just a means of reducing arguments.
#'
#' @param ... your data, generally just piped in
#'
#' @return
#' @export
#'
#' @examples
#' #df%>%
#' #sum_nona(Amount)
sum_nona<-function(...){
sum(...,na.rm=TRUE)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.