View source: R/transform-compose.R
transform_compose | R Documentation |
This transformer provides a general mechanism for composing two or more transformers together. The most important use case is to combine reverse with other transformations.
transform_compose(...)
compose_trans(...)
... |
One or more transformers, either specified with string or as individual transformer objects. |
demo_continuous(10^c(-2:4), trans = "log10", labels = label_log())
demo_continuous(10^c(-2:4), trans = c("log10", "reverse"), labels = label_log())
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.