10.7 C
London
Sunday, July 7, 2024
HomeStatistics TutorialStatologyHow to Plot a Normal Distribution in R

How to Plot a Normal Distribution in R

Related stories

Learn About Opening an Automobile Repair Shop in India

Starting a car repair shop is quite a good...

Unlocking the Power: Embracing the Benefits of Tax-Free Investing

  Unlocking the Power: Embracing the Benefits of Tax-Free Investing For...

Income Splitting in Canada for 2023

  Income Splitting in Canada for 2023 The federal government’s expanded...

Can I Deduct Home Office Expenses on my Tax Return 2023?

Can I Deduct Home Office Expenses on my Tax...

Canadian Tax – Personal Tax Deadline 2022

  Canadian Tax – Personal Tax Deadline 2022 Resources and Tools...

To plot a normal distribution in R, we can either use base R or install a fancier package like ggplot2.

Using Base R

Here are three examples of how to create a normal distribution plot using Base R.

Example 1: Normal Distribution with mean = 0 and standard deviation = 1

To create a normal distribution plot with mean = 0 and standard deviation = 1, we can use the following code:

#Create a sequence of 100 equally spaced numbers between -4 and 4
x #create a vector of values that shows the height of the probability distribution
#for each value in x
y #plot x and y as a scatterplot with connected lines (type = "l") and add
#an x-axis with custom labels
plot(x,y, type = "l", lwd = 2, axes = FALSE, xlab = "", ylab = "")
axis(1, at = -3:3, labels = c("-3s", "-2s", "-1s", "mean", "1s", "2s", "3s"))

This generates the following plot:

Example 2: Normal Distribution with mean = 0 and standard deviation = 1 (less code)

We could also create a normal distribution plot without defining and y, and instead simply using the “curve” function using the following code:

curve(dnorm, -3.5, 3.5, lwd=2, axes = FALSE, xlab = "", ylab = "")
axis(1, at = -3:3, labels = c("-3s", "-2s", "-1s", "mean", "1s", "2s", "3s"))

This generates the exact same plot:

Example 3: Normal Distribution with customized mean and standard deviation

To create a normal distribution plot with a user-defined mean and standard deviation, we can use the following code:

#define population mean and standard deviation
population_mean #define upper and lower bound
lower_bound #Create a sequence of 1000 x values based on population mean and standard deviation
x #create a vector of values that shows the height of the probability distribution
#for each value in x
y #plot normal distribution with customized x-axis labels
plot(x,y, type = "l", lwd = 2, axes = FALSE, xlab = "", ylab = "")
sd_axis_bounds = 5
axis_bounds 

This generates the following plot:

Using ggplot2

Another way to create a normal distribution plot in R is by using the ggplot2 package. Here are two examples of how to create a normal distribution plot using ggplot2.

Example 1: Normal Distribution with mean = 0 and standard deviation = 1

To create a normal distribution plot with mean = 0 and standard deviation = 1, we can use the following code:

#install (if not already installed) and load ggplot2
if(!(require(ggplot2))){install.packages('ggplot2')}

#generate a normal distribution plot
ggplot(data.frame(x = c(-4, 4)), aes(x = x)) +
stat_function(fun = dnorm)

This generates the following plot:

Example 2: Normal Distribution using the ‘mtcars’ dataset

The following code illustrates how to create a normal distribution for the miles per gallon column in the built-in R dataset mtcars:

ggplot(mtcars, aes(x = mpg)) +
stat_function(
fun = dnorm,
args = with(mtcars, c(mean = mean(mpg), sd = sd(mpg)))
) +
scale_x_continuous("Miles per gallon")

This generates the following plot:

Subscribe

- Never miss a story with notifications

- Gain full access to our premium content

- Browse free from up to 5 devices at once

Latest stories