parse_ggplot2_args {teal.widgets} | R Documentation |
Parse ggplot2_args
object into the ggplot2
expression
Description
A function to parse expression from the ggplot2_args
object.
Usage
parse_ggplot2_args(
ggplot2_args = teal.widgets::ggplot2_args(),
ggtheme = c("default", "gray", "bw", "linedraw", "light", "dark", "minimal", "classic",
"void", "test")
)
Arguments
ggplot2_args |
( |
ggtheme |
( |
Value
(list
) of up to three elements of class languange
: "labs"
, "ggtheme"
and "theme"
.
Examples
parse_ggplot2_args(
resolve_ggplot2_args(ggplot2_args(
lab = list(title = "TITLE"),
theme = list(title = ggplot2::element_text(size = 20))
))
)
parse_ggplot2_args(
resolve_ggplot2_args(
ggplot2_args(
lab = list(title = "TITLE"),
theme = list(title = ggplot2::element_text(size = 20))
)
),
ggtheme = "gray"
)
[Package teal.widgets version 0.4.2 Index]