print.haplo.score {haplo.score} | R Documentation |
Method function to print a class of type haplo.score
print.haplo.score(x, ...)
x |
The object returned from haplo.score (which has class haplo.score). |
... |
Optional argunents. |
This is a print method function used to print information from haplo.score class, with haplotype-specific information given in a table. Because haplo.score is a class, the generic print function can be used, which in turn calls this print.haplo.score function.
Nothing is returned.
Schaid DJ, Rowland CM, Tines DE, Jacobson RM, Poland GA. Score tests for association of traits with haplotypes when linkage phase is ambiguous. Submitted to Amer J Hum Genet.
haplo.score
## Don't run: save <- haplo.score(y, geno, trait.type = "gaussian") # Example illustrating generic print function: print(save) # Example illustrating specific method print function: print.haplo.score(save) ## End Don't run