R/summary.matrixBC.R

Defines functions summary.matrixBC

Documented in summary.matrixBC

summary.matrixBC <- function(object, ...){
	cat("Summary for the object \"matrixBC\"\n")
	cat("Call:\n\t"); print(object$cl,...);	cat("\n")


		
	cat("Cluster labels for the rows:\n")
	print(object$Cs)
	cat("\n")
	
	cat("Cluster labels for the columns:\n")
	print(object$Ds)
	cat("\n")
		
	cat("The estimated bicluster means:\n")
	print(object$Mus)
	
	invisible(object)
}

Try the sparseBC package in your browser

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

sparseBC documentation built on May 2, 2019, 2:11 a.m.