in R studio
## The Exponential Distribution
The density funtion for the exponential distribution is "dexp" with parameter $\lambda$.
Note that the parameter $\lambda$ defined in class is denoted by the "rate" parameter in the R-function "dexp".
Write a function plot_exp that takes input the "rate" parmeter, and outputs a plot of the exponential distribution.
Also write a function lines_exp that inputs the "rate" parameter, and ouputs a plots that will overlay on the plot_exp output.
```{r}
#plot_exp
#lines_exp
```
Use the plot_exp, lines_exp, and a for loop, to plot the density of the exponetial distribution for lambda values $\lambda = 5, 3, 2, 1, 0.5, 0.1$ in a single plot.
```{r}
lambdas <- c(5, 3, 2, 0.5, 0.4)
```
1
Expert's answer
2020-11-09T18:54:11-0500
Dear nati, your question requires a lot of work, which neither of our experts is ready to perform for free. We advise you to convert it to a fully qualified order and we will try to help you. Please click the link below to proceed: Submit order
Comments
Leave a comment