https://github.com/cran/bild
Raw File
Tip revision: a300fe2b8c94aa973f39d050e5d9ddf04f609e1a authored by M. Helena Gon\xe7alves on 17 February 2013, 00:00:00 UTC
Tip revision: a300fe2
show_bild.R
setMethod("show",
    signature(object = "bild"),
    function (object) 
    {
	cat("\nCall:\n") 
	dput(object@call)
	cat("\nNumber of profiles used in the fit:", object@n.cases,"\n")
	cat("\nNumber of Coefficients:", length(object@coefficients),"\n")
	cat("\nLog likelihood:", round(object@log.likelihood, 4),"\n\n")
	cat("Message: ", object@message,"\n")
	})

back to top