Revision ade4b694b3f416d6b195ddcd584d6f89ef36ea2f authored by M. Helena Gon\xe7alves on 28 January 2012, 00:00:00 UTC, committed by Gabor Csardi on 28 January 2012, 00:00:00 UTC
1 parent 8cb2c8d
Raw File
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