compose_trans {scales} | 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.
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())