Class cpg.perm {CpGassoc} | R Documentation |
Methods for object of class "cpg.perm"
.
Description
Methods and extra functions for class "cpg.perm"
.
plot.cpg.perm
creates a QQ plot based on the association p-values or t-statistics from the function cpg.perm
.
Usage
## S3 method for class 'cpg.perm'
plot(x, save.plot = NULL, file.type = "pdf", popup.pdf = FALSE,
main.title = NULL, eps.size = c(5, 5), tplot = FALSE, perm.ci = TRUE, classic = TRUE,
gc.p.val = FALSE, gcdisplay = FALSE, ...)
## S3 method for class 'cpg.perm'
summary(object,...)
## S3 method for class 'cpg.perm'
print(x,...)
## S3 method for class 'cpg.perm'
sort(x,decreasing,...)
Arguments
x |
Output from |
save.plot |
Name of the file for the plot to be saved to. If not specified, plot will not be saved. |
file.type |
Type of file to be saved. Can either be |
popup.pdf |
|
main.title |
Main title to be put on the graph. If |
eps.size |
Vector indicating the size of .eps file (if creating one). Corresponds to the options horizontal and height in the
|
tplot |
Logical. If |
perm.ci |
Logical. If |
classic |
Logical. If |
gc.p.val |
Logical. If true, plot will use the genomic control adjusted p-values. |
gcdisplay |
Logical.If true, plot will display the genomic control value in the legend. |
object |
Output of class |
decreasing |
logical. Should the sort be increasing or decreasing? Not available for partial sorting. |
... |
Arguments to be passed to methods, such as graphical parameters. |
Note
Empirical confidence intervals will be computed only if there are a hundred or more permutations. Otherwise the theoretical confidence intervals will be plotted.
Author(s)
Barfield, R.; Kilaru,V.; Conneely, K.
Maintainer: R. Barfield: <barfieldrichard8@gmail.com>
See Also
cpg.perm
plot.cpg
scatterplot
manhattan
cpg.assoc
Examples
data(samplecpg,samplepheno,package="CpGassoc")
#The qq plot:
Testperm<-cpg.perm(samplecpg[1:300,],samplepheno$weight,seed=2314,nperm=10,large.data=FALSE)
plot(Testperm)
#The t-statistic plot from cpg.perm has confidence intervals since we were allowed
#to perform permutations on the T-values.
plot(Testperm,tplot=TRUE)
#If there was 100 or more permutations, there would be emperical confidence intervals.
#Getting an example of the non classic QQ plot
plot(Testperm,classic=FALSE)
###Now for Sort
head(sort(Testperm)$results)
head(Testperm$results)