15.1 C
London
Friday, July 5, 2024
HomeRProbability Distributions in RHow to Plot an Exponential Distribution in R

How to Plot an Exponential 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...

The exponential distribution is a probability distribution that is used to model the time we must wait until a certain event occurs.

If a random variable X follows an exponential distribution, then the probability density function of X can be written as:

f(x; λ) = λe-λx

where:

  • λ: the rate parameter
  • e: A constant roughly equal to 2.718

The cumulative distribution function of X can be written as:

F(x; λ) = 1 – e-λx

This tutorial explains how to plot a PDF and CDF for the exponential distribution in R.

Plotting a Probability Density Function

The following code shows how to plot a PDF of an exponential distribution with rate parameter λ = 0.5:

curve(dexp(x, rate = .5), from=0, to=10, col='blue')

Plot exponential PDF in R

The following code shows how to plot multiple PDF’s of an exponential distribution with various rate parameters:

#plot PDF curves
curve(dexp(x, rate = .5), from=0, to=10, col='blue')
curve(dexp(x, rate = 1), from=0, to=10, col='red', add=TRUE)
curve(dexp(x, rate = 1.5), from=0, to=10, col='purple', add=TRUE)

#add legend
legend(7, .5, legend=c("rate=.5", "rate=1", "rate=1.5"),
       col=c("blue", "red", "purple"), lty=1, cex=1.2)

Plot of multiple exponential PDF functions in R

Plotting a Cumulative Distribution Function

The following code shows how to plot a CDF of an exponential distribution with rate parameter λ = 0.5:

curve(pexp(x, rate = .5), from=0, to=10, col='blue')

Exponential CDF plot in R

The following code shows how to plot multiple CDF’s of an exponential distribution with various rate parameters:

#plot CDF curves
curve(pexp(x, rate = .5), from=0, to=10, col='blue')
curve(pexp(x, rate = 1), from=0, to=10, col='red', add=TRUE)
curve(pexp(x, rate = 1.5), from=0, to=10, col='purple', add=TRUE)

#add legend
legend(7, .9, legend=c("rate=.5", "rate=1", "rate=1.5"),
       col=c("blue", "red", "purple"), lty=1, cex=1.2)

Multiple exponential distributions in one plot in R

Additional Resources

The following tutorials explain how to plot other probability distributions in R:

How to Plot a Poisson Distribution in R
How to Plot a Binomial Distribution in R
How to Plot a t Distribution in R
How to Plot a Normal Distribution in R
How to Plot a Chi-Square Distribution in R

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