#' Title
#'
#' @param sex (character)
#'
#' @return character
#' @export
#'
#' @examples give_name()
#'
give_name <- function(sex = "female"){
possible_names <- sa_names$first_name[sa_names$sex == sex]
sample(possible_names, size=1)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.