R/print.fit.bd.R

print.fit.bd <- function (x, ...)
{
   nn <- names(x)
   ll <- length(x)
   if (length(nn) != ll)
       nn <- paste("Component", seq.int(ll))
   for (i in seq_len(ll)) {
       if ((nn[i] != "f.lamb") && (nn[i] != "f.mu"))
       {
       cat(nn[i], ":\n")
       print(x[[i]], ...)
       cat("\n")
        }
        else{
            }
   }
   invisible(x)
}

Try the RPANDA package in your browser

Any scripts or data that you put into this service are public.

RPANDA documentation built on Oct. 24, 2022, 5:06 p.m.