naming | R Documentation |
Helps setting up the name of an operation.
naming(
start = NULL,
sets1,
middle = NULL,
sets2 = NULL,
collapse_symbol = "union"
)
start , middle |
Character used as a start symbol or to divide
|
sets1 , sets2 |
Character of sets |
collapse_symbol |
Name of the symbol that joins the sets on
|
A character vector combining the sets
set_symbols()
naming(sets1 = c("a", "b"))
naming(sets1 = "a", middle = "union", sets2 = "b")
naming(sets1 = "a", middle = "intersection", sets2 = c("b", "c"))
naming(sets1 = "a", middle = "intersection", sets2 = c("b", "c"))
naming(
start = "complement", sets1 = "a", middle = "intersection",
sets2 = c("b", "c"), collapse_symbol = "intersection"
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.