This function generates a plot of a normal distribution using user supplied mean and standard deviation.
plot_dist(distribution = "gaussian", range = c(-3, 3), mean = 0, sd = 1, ...)
A distribution type (defaults to gaussian)
A vector of 2 values indicating the range for the x-axis and the data
A numeric value for the center of gravity of the distribution (defaults to 0)
A numeric value for the standard deviation of the distribution (defaults to 1)
Arguments to be passed to ggplot. Specifically 'font_color' and 'tex'.
A function for plotting normal distributions