#' Unique Rows
#'
#' This function finds how many unique rows there are in a data frame
#'
#' There are many important details within this function, but the most important is that you enter a data frame as the only argument.
#'
#' @author Isabella Bingaman
#'
#' @param df A data frame.
#'
#' @return The number of unique rows there are in a data frame.
#'
#' @examples
#' unique_rows(mtcars)
#'
#' @export
unique_rows <- function(df){
nrow(dplyr::distinct(df))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.