Description Usage Arguments Value Examples
MLE estimates of a Normal Distribution Fits a normal
1 | fitnormalvecMLE(data, logit = F)
|
data |
- a vector of data |
logit |
- if a logit transformation is needed |
a list with the elements: mean with the mean of the distribution and var with the variance of the distribution.
1 2 3 4 5 | set.seed(1)
data1 = rnorm(100)
fitnormalvecMLE(data1)
data2 = rnorm(100, mean = .5, sd = 0.03)
fitnormalvecMLE(data2, logit = TRUE)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.