| lbl_glue | R Documentation |
glue packageUse "{l}" and "{r}" to show the left and right endpoints of the intervals.
lbl_glue(
label,
fmt = NULL,
single = NULL,
first = NULL,
last = NULL,
raw = FALSE,
...
)
label |
A glue string passed to |
fmt |
String, list or function. A format for break endpoints. |
single |
Glue string: label for singleton intervals. See |
first |
Glue string: override label for the first category. Write e.g.
|
last |
String: override label for the last category. Write e.g.
|
raw |
|
... |
Further arguments passed to |
The following variables are available in the glue string:
l is a character vector of left endpoints of intervals.
r is a character vector of right endpoints of intervals.
l_closed is a logical vector. Elements are TRUE when the left
endpoint is closed.
r_closed is a logical vector, TRUE when the right endpoint is closed.
Endpoints will be formatted by fmt before being passed to glue().
A function that creates a vector of labels.
If fmt is not NULL then it is used to format the endpoints.
If fmt is a string, then numeric endpoints will be formatted by
sprintf(fmt, breaks); other endpoints, e.g. Date objects, will be
formatted by format(breaks, fmt).
If fmt is a list, then it will be used as arguments to format.
If fmt is a function, it should take a vector of numbers (or other objects
that can be used as breaks) and return a character vector. It may be helpful
to use functions from the {scales} package, e.g. scales::label_comma().
Other labelling functions:
lbl_dash(),
lbl_discrete(),
lbl_endpoints(),
lbl_intervals(),
lbl_manual(),
lbl_midpoints(),
lbl_seq()
tab(1:10, c(1, 3, 3, 7),
labels = lbl_glue("{l} to {r}", single = "Exactly {l}"))
tab(1:10 * 1000, c(1, 3, 5, 7) * 1000,
labels = lbl_glue("{l}-{r}",
fmt = function(x) prettyNum(x, big.mark=',')))
# reproducing lbl_intervals():
interval_left <- "{ifelse(l_closed, '[', '(')}"
interval_right <- "{ifelse(r_closed, ']', ')')}"
glue_string <- paste0(interval_left, "{l}", ", ", "{r}", interval_right)
tab(1:10, c(1, 3, 3, 7), labels = lbl_glue(glue_string, single = "{{{l}}}"))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.