View source: R/distribution_convertors.R
trunc2norm | R Documentation |
Convert a truncated normal distribution to a normal (gaussian) distribution
trunc2norm(x, min = NULL, max = NULL, mu = mean(x), sd = stats::sd(x))
x |
the truncated normally distributed vector |
min |
the minimum of the truncated distribution (calculated from x if not given) |
max |
the maximum of the truncated distribution (calculated from x if not given) |
mu |
the mean of the distribution to return (calculated from x if not given) |
sd |
the SD of the distribution to return (calculated from x if not given) |
a vector with a uniform distribution
x <- truncnorm::rtruncnorm(10000, 1, 7, 3.5, 2)
y <- trunc2norm(x, 1, 7)
g <- ggplot2::ggplot() + ggplot2::geom_point(ggplot2::aes(x, y))
ggExtra::ggMarginal(g, type = "histogram")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.