Inferences Exponential Distribution | R Documentation |
Estimates parameters of a univariate Exponential Distribution with maximum likelihood.
eexp(data, plot.it = TRUE, empirical = FALSE, col.estimated = "orange", col.empirical = "navy", ...)
data |
vector containing the sample as rexp. |
plot.it |
logical, TRUE to plot the histogram with estimated distribution curve. |
empirical |
logical, TRUE to add the empirical curve ("Kernel Density Estimation") in the plot. |
col.estimated |
a colour to be used in the curve of estimated density. |
col.empirical |
a colour to be used in the curve of empirical density. |
... |
further arguments and graphical parameters passed to hist. |
CASTRO, M. O.; MONTALVO, G. S. A.
## Generate a sample. data = rexp(n = 1000, rate = 1/10) ## And now, estimate the parameters, using the 'data' list. eexp(data) ## Not plotting the graphic. eexp(data, plot.it = FALSE) ## Adding the empirical curve to the graphic. eexp(data, empirical = TRUE) ## Changing the color of the curves. eexp(data, empirical = TRUE, col.estimated = "pink", col.empirical = "red3") ## Using "..." eexp(data, empirical = TRUE, col.estimated = "pink", col.empirical = "red3", breaks = 300)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.