Generates perfect normally distributed numbers (used for plotting)

perfect_rnorm(n, mean = 0, sd = 1)

Arguments

n

Number of samples

mean

Mean of the distribution. Default is 0

sd

SD of the distribution. Default is 1

Value

Numeric vector, length of n

Examples

perfect_rnorm(10)
#> [1] -1.2815516 -0.8819982 -0.5894558 -0.3406948 -0.1116372 0.1116372 #> [7] 0.3406948 0.5894558 0.8819982 1.2815516