R/ggplot.R
logit_trans.Rd
it perform logit scaling with right axis formatting. To not be used directly but with ggplot (e.g. scale_y_continuous(trans = "log10_reverse") )
logit_trans()
A scales object
`r lifecycle::badge("maturing")`
library(ggplot2) library(tibble) tibble(pvalue = c(0.001, 0.05, 0.1), fold_change = 1:3) %>% ggplot(aes(fold_change , pvalue)) + geom_point() + scale_y_continuous(trans = "log10_reverse")