R/print.haplinStrat.R

Defines functions print.haplinStrat

print.haplinStrat <- function(object){
##
##
##
cat('List of length ', length(object), ' containing results from a stratified haplin analysis.\nUse "summary" function to get detailed information.\n', sep = '') 

for(i in seq(along = object)){
	cat("\n#### Stratum = ", names(object)[i], " ####\n", sep = "")
	print(object[[i]])
}
return(invisible(object))

}

Try the Haplin package in your browser

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

Haplin documentation built on May 20, 2022, 5:07 p.m.