#' Force in/out together
#'
#' Identify items that cannot/must be present together in a
#' combinations. Made to be used in the call to [turf][onezero::turf].
#'
#' @details This is simply a wrapper for [quos][rlang::quos].
#'
#' @param ... Unquoted names or tidyselect expressions.
#'
#' @importFrom rlang quos
#'
#' @examples
#' together(
#' c(var1, var2),
#' dplyr::ends_with("a"),
#' c(5, 9)
#' )
#'
#' @return A list of quosures.
#'
#' @export
together <- function(...) {
quos(...)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.