https://github.com/cran/bild
Raw File
Tip revision: 6661b7703cf2271cb13756a6ff2969ef8e1d88f3 authored by M. Helena Goncalves on 03 November 2023, 14:40:02 UTC
version 1.2-1
Tip revision: 6661b77
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