norm2beta: Convert normal to beta

View source: R/distribution_convertors.R

norm2betaR Documentation

Convert normal to beta

Description

Convert normal to beta

Usage

norm2beta(x, shape1, shape2, mu = mean(x), sd = stats::sd(x), ...)

Arguments

x

the normally distributed vector

shape1, shape2

non-negative parameters of the distribution to return

mu

the mean of x (calculated from x if not given)

sd

the SD of x (calculated from x if not given)

...

further arguments to pass to qbeta (e.g., ncp)

Value

a vector with a beta distribution

Examples


x <- rnorm(10000)
y <- norm2beta(x, 1, 3)
g <- ggplot2::ggplot() + ggplot2::geom_point(ggplot2::aes(x, y))
ggExtra::ggMarginal(g, type = "histogram")


faux documentation built on April 20, 2023, 9:13 a.m.