#' Number of Non_NA Values.
#'
#' Function that returns the number of
#' non-missing values in a sample of data.
#' @param x A vector of numbers.
#' @return A count.
#' @examples
#'nonNA(1:10)
#'
#' @export
nonNA <- function(x){
sum(!is.na(x))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.