Learn R Programming

farms (version 1.24.0)

plot-methods: Visualizes the distribution of informative and non-informatives genes

Description

This function visualizes the distribution of informative and non-informative genes of a given instance of INI_Calls-class.

Usage

## S3 method for class 'INI_Calls,missing':
plot(x)

Arguments

x
An instance of INI_Calls-class.

Value

See Also

expFarms, qFarms,lFarms,INIcalls,summary

Examples

Run this code
data(testAffyBatch)
eset <- expFarms(testAffyBatch, bgcorrect.method = "none", pmcorrect.method = "pmonly", normalize.method = "constant") 
INIs <- INIcalls(eset)  # apply I/NI calls
summary(INIs)
plot(INIs) # draws a density plot of I/NI-calls
I_data <- getI_Eset(INIs) # affybatch containing only informative probe sets
NI_data <- getNI_Eset(INIs) # affybatch containing only non-informative probe sets
I_probes <- getI_ProbeSets(INIs) # vector containing only informative probe sets names
NI_probes <- getNI_ProbeSets(INIs) # vector containing only  non-informative probe sets names

Run the code above in your browser using DataLab