Convert a normal (gaussian) distribution to a uniform distribution with specified minimum and maximum
Examples
x <- rnorm(10000)
y <- norm2unif(x)
g <- ggplot2::ggplot() + ggplot2::geom_point(ggplot2::aes(x, y))
ggExtra::ggMarginal(g, type = "histogram")