View source: R/multifreqpoly.R
freqpoly | R Documentation |
Similar to histogram, frequency polygon plot can be used to display data distribution.
freqpoly(mat, nbreaks=15, col="black", xlab="", ylab="Frequency",
type="l",append=FALSE,...)
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" |
Frequency polygon plot.
Zongli Xu
Zongli Xu, Liang Niu, Leping Li and Jack A. Taylor, ENmix: a novel background correction method for Illumina HumanMethylation450 BeadChip. Nucleic Acids Research 2015.
if(FALSE){
if (require(minfiData)) {
mdat <- preprocessRaw(RGsetEx)
beta=getBeta(mdat, "Illumina")
freqpoly(beta[,1])
}}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.