Description Usage Arguments Value See Also
View source: R/internalFunctions.R
Finds the best-fit normal distribution parameters for a given confidence interval and returns the mean and sd parameters.
1 | identifyNormPars(qLow, qUpp, alpha = 0.05, initPars = c(0, 1), maxiter = 1000)
|
qLow |
The observed lower quantile. |
qUpp |
The observed upper quantile. |
alpha |
The confidence level; i.e. the desired coverage is 1-alpha. Defaults to 0.05. |
initPars |
A vector of length 2 giving the initial parameter values to start the optimisation; defaults to c(50,50). |
maxiter |
Maximum number of iterations for |
A vector of length 2 giving the 2 parameters mean and sd for use with rnorm/dnorm/pnorm/qnorm.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.