View source: R/summary.CZIGP.R
summary.CZIGP | R Documentation |
This function returns the result of the CZIGPMM
function
## S3 method for class 'CZIGP'
summary(object, digits = 4, ...)
object |
Output from a call to CZIGP. |
digits |
The desired number of digits after the decimal point. Default of 4 digits is used. |
... |
Additional arguments |
Summary for CZIGPMM
objects.
CZIGPMM
x1 <- c(0,35,23,34,8,19,0,0,0,0)
x2 <- c(38,15,0,25,34,0,0,0,0,0)
y <- cbind(x1, x2)
phi0 = 0.5; phi = rep(0.5,2); la = rep(1,2); th = rep(0.1,2)
result <- CZIGPMM(y, phi0, phi, la, th)
summary(result,digits=4)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.