create_title_format {GTAPViz} | R Documentation |
Create a Title Format Configuration
Description
Creates a configuration list for controlling plot title formatting. Supports auto-completion for common title format types.
Usage
create_title_format(type = "standard", text = "", sep = NULL)
Arguments
type |
Character. Title format type:
|
text |
Character. Text content used for |
sep |
Character. The separator between components (only used in |
Value
A list with title format configuration parameters.
Author(s)
Pattawee Puangchit
Examples
# 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}"
)
[Package GTAPViz version 1.1.3 Index]