| create_title_format | R Documentation |
Creates a configuration list for controlling plot title formatting. Supports auto-completion for common title format types.
create_title_format(type = "standard", text = "", sep = NULL)
type |
Character. Title format type:
|
text |
Character. Text content used for |
sep |
Character. The separator between components (only used in |
A list with title format configuration parameters.
Pattawee Puangchit
# Standard auto-generated title
standard_title <- create_title_format()
# Prefix title
prefix_title <- create_title_format(
type = "prefix",
text = "Impact on",
sep = " "
)
# Dynamic title using column values
dynamic_title <- create_title_format(
type = "dynamic",
text = "Impact on {Variable} in {Region}"
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.