QualFreqPlot(ReQON)
QualFreqPlot()所属R语言包:ReQON
Plot frequency distributions of quality scores.
质量分数的图频率分布。
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Plots the relative frequency distribution of quality scores before and after recalibration.
图相对质量分数前和校准后的频率分布。
用法----------Usage----------
QualFreqPlot(QualFreqBefore, QualFreqAfter, before_col = "blue",
after_col = "red", inc_legend = TRUE, xlabel = "Quality Score",
ylabel = "Relative Frequency",
main_title = "Frequency Distributions of Quality Scores")
参数----------Arguments----------
参数:QualFreqBefore
vector of relative frequencies of quality scores before recalibration. The first element in the vector corresponds to a quality score of zero.
矢量校准前的质量分数的相对频率。向量中的第一个元素对应于零的质量得分。
参数:QualFreqAfter
vector of relative frequencies of quality scores after recalibration. The first element in the vector corresponds to a quality score of zero.
矢量校准后的质量分数的相对频率。向量中的第一个元素对应于零的质量得分。
参数:before_col
color of line plotting the frequency before recalibration. Default = "blue".
行前校准的频率绘制的颜色。默认=“蓝”。
参数:after_col
color of line plotting the frequency after recalibration. Default = "red".
颜色的线绘制校准后的频率。默认=“红色”。
参数:inc_legend
option for including a legend. Default = TRUE.
选项包括一个传奇。默认= TRUE。
参数:xlabel
x-axis label. Default = "Quality Score".
X轴标签。默认=“品质分数”。
参数:ylabel
y-axis label. Default = "Relative Frequency".
Y轴标签。默认=“相对频率”。
参数:main_title
title. Default = "Frequency Distributions of Quality Scores".
称号。默认=“频率分布”质量得分。
Details
详情----------Details----------
QualFreqPlot plots the relative frequency distribution of quality scores before and after recalibration. If the input vectors are $QualFreqBefore and $QualFreqAfter from ReQON output, this function will create the top right diagnostic plot that is output from ReQON.
QualFreqPlot图相对质量分数前和校准后的频率分布。如果输入向量QualFreqBefore和美元从ReQON输出QualFreqAfter,此功能将创建右上角的诊断图是从ReQON输出。
For more details and interpretation, see the vignette by: browseVignettes("ReQON").
对于更多的细节和解释,看到的小插曲:browseVignettes(“ReQON)。
作者(S)----------Author(s)----------
Christopher Cabanski <a href="mailto:cabanski@email.unc.edu">cabanski@email.unc.edu</a>
举例----------Examples----------
## Create data of frequencies[#创建数据的频率。]
require( stats )
before <- dpois( c( 0:40 ), 40 )
before <- before / sum( before )
after <- dnorm( c( 0:40 ), mean = 30, sd = 8 )
after <- after / sum( after )
## plot[#积]
QualFreqPlot( before, after )
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|