guide-composition | R Documentation |
Guide composition is a meta-guide orchestrating an ensemble of other guides. On their own, a 'composing' guide is not very useful as a visual reflection of a scale.
new_compose(
guides,
args = list(),
...,
available_aes = c("any", "x", "y", "r", "theta"),
call = caller_env(),
super = Compose
)
guides |
A
|
args |
A |
... |
Additional parameters to pass on to
|
available_aes |
A |
call |
A call to display in messages. |
super |
A |
A <Compose>
(sub-)class guide that composes other guides.
Other composition:
compose_crux()
,
compose_ontop()
,
compose_sandwich()
,
compose_stack()
# The `new_compose()` function is not intended to be used directly
my_composition <- new_compose(list("axis", "axis"), super = ComposeStack)
# Is the same as
my_composition <- compose_stack("axis", "axis")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.