cc.mle | R Documentation |
Maximum likelihood estimation of the CC distribution.
cc.mle(y)
cc.mle0(y, tol = 1e-7)
y |
A vector with integer values. |
tol |
The tolerance value to terminate the maximization algorithm. |
The function cc.mle0() uses the optimize
function to perform MLE when the location parameter is zero, just as proposed by Papadatos (2022). The function cc.mle() uses the optim
function when the location is not assumed zero.
A list including:
param |
For the cc.mle() a vector of the |
lambda |
For the cc.mle0() the |
loglik |
The value of the maximized log-likelihood. |
Michail Tsagris.
R implementation and documentation: Michail Tsagris mtsagris@uoc.gr.
Papadatos N. (2022). The characteristic function of the discrete Cauchy distribution In Memory of T. Cacoullos. Journal of Statistical Theory and Practice, 16(3): 47.
loc0.test, dcc, cc.reg
y <- round( rcauchy(100, 3, 10) )
cc.mle(y)
y <- round( rcauchy(100, 0, 10) )
cc.mle0(y)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.