Description Usage Arguments References Examples
Minus log transformation
1 | mlog_trans(base = 10)
|
base |
base of logarithm to use |
https://stat.ethz.ch/pipermail/r-help/2014-April/373728.html and https://gist.github.com/wch/3250485
1 2 3 4 5 6 7 8 | require(ggplot2)
df <- data.frame(y = runif(1000))
ggplot(df, aes(sample = y)) +
stat_qq(distribution = stats::qunif) +
scale_y_continuous(trans = "mlog") +
scale_x_continuous(trans = "mlog") +
geom_abline(intercept = 0, slope = 1)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.