plot.haplo.score {haplo.score} | R Documentation |
Method function to plot a class of type haplo.score
plot.haplo.score(x, ...)
x |
The object returned from haplo.score (which has class haplo.score). |
... |
Optional arguments |
This is a plot method function used to plot haplotype frequencies on the x-axis and haplotype-specific scores on the y-axis. Because haplo.score is a class, the generic plot function can be used, which in turn calls this plot.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 plot function: plot(save) # Example illustrating specific method plot function: plot.haplo.score(save) ## End Don't run