#' Select (and arrange) distinct items
#'
#' @importFrom dplyr select distinct arrange
#'
#' @export
select_distinct <- function (input_data, ...) {
selected <- distinct(dplyr::select(input_data, ...))
ensured <- ensure_distinct(selected, ...)
arrange(ensured, ...)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.