Description Usage Arguments Examples
View source: R/associationTest.R
Plot markers selection frequencies at their position at the genome.
1 2 | plotSelFreq(x, xlab = "Chromosomes", ylab = "Sel. freq.", col.axis = NULL,
...)
|
x |
an object of class |
xlab |
a title for the x axis. |
ylab |
a title for the y axis. |
col.axis |
colors for axis line, tick marks, and title respectively. |
... |
other graphical parameters may also be passed as arguments to this function. |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | # If you want to run the examples, use:
# example(plotSelFreq, run.dontrun = TRUE)
## Not run:
# files containing example data for SNP data and the phenotype
pfile <- system.file("extdata/phenodata.csv", package = "qtcat")
gfile <- system.file("extdata/snpdata.csv", package = "qtcat")
pdat <- read.csv(pfile, header = TRUE)
snp <- read.snpData(gfile, sep = ",")
clust <- qtcatClust(snp)
geno <- qtcatGeno(snp, clust)
pheno <- qtcatPheno(names = pdat[, 1],
pheno = pdat[, 2],
covariates = model.matrix(~ pdat[, 3]))
fitted <- qtcatHit(pheno, geno)
# Plot the selection frequncy of markers (loci37, loci260, and loci367 are causal)
plotSelFreq(fitted)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.