cc.reg | R Documentation |
Regression modelling with the CC distribution.
cc.reg(y, x, tol = 1e-6)
y |
The response variable, a vector with integer values. |
x |
A vector or matrix with with the predictor variables. |
tol |
The tolerance value to terminate the maximization algorithm. |
Regression modelling assuming that the counts follow the CC distribution is implemented.
A list including:
lambda |
The |
be |
The regression coefficients. |
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.
cc.mle
y <- round( rcauchy(150, 3, 10) )
x <- iris[, 1:2]
cc.reg(y, x)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.