Learn R Programming

ENmix (version 1.8.0)

freqpoly: Frequency polygon plot

Description

Similar to histogram, frequency polygon plot can be used to display data distribution.

Usage

freqpoly(mat, nbreaks=15, col="black", xlab="", ylab="Frequency", type="l",append=FALSE,...)

Arguments

mat
A numeric vector
nbreaks
Number of bins for frequency counting
col
color code
xlab
x-axis lable
ylab
y-axis lable
type
character indicating the type of plotting; actually any of the 'type's as in 'plot.default'.
append
TRUE or FALSE, whether to create a new figure or append to the current figure.
...
Further arguments that get passed to the function "plot"

Value

Frequency polygon plot.

References

Zongli Xu, Liang Niu, Leping Li and Jack A. Taylor, ENmix: a novel background correction method for Illumina HumanMethylation450 BeadChip. Nucleic Acids Research 2015.

Examples

Run this code
if(FALSE){
if (require(minfiData)) {
mdat <- preprocessRaw(RGsetEx)
beta=getBeta(mdat, "Illumina")
freqpoly(beta[,1])
}}

Run the code above in your browser using DataLab