R/print.haplinStrat.R

Defines functions print.haplinStrat

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

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

}

Try the Haplin package in your browser

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

Haplin documentation built on Sept. 11, 2024, 7:13 p.m.