baselineabif(seqinr)
baselineabif()所属R语言包:seqinr
Estimation of baseline value
估计基准值
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This function tries to estimate the baseline value for RFU data from capillary electrophoresis whith the heuristic that the most common value is the baseline.
该函数尝试RFU数据毛细管电泳杀虫启发式,最常见的值是基线估计的基准值。
用法----------Usage----------
baselineabif(rfu, maxrfu = 1000)
参数----------Arguments----------
参数:rfu
a numeric vector of signal value
的信号值的一个数值向量
参数:maxrfu
signal values greater or equal to maxrfu are forced to NA
信号值大于或等于maxrfu被迫不适用
值----------Value----------
A single numeric value for the estimated baseline.
一个数值的估计基准。
(作者)----------Author(s)----------
J.R. Lobry
参见----------See Also----------
JLO for a dataset example, plotabif to plot this kind of data, peakabif to estimate peak parameters.
JLO为数据集的例子,plotabif绘制这种类型的数据,peakabif估计峰值参数。
实例----------Examples----------
data(JLO)
rfu <- JLO$Data$DATA.1
bl <- baselineabif(rfu)
plot(1:length(rfu), rfu, type = "l",
xlab = "Time [datapoint units]",
ylab = "Signal [RFU]",
main = "Example of baseline estimates")
abline(h = bl, col="red", lty = 2)
legend("topright", inset = 0.02, "Baseline estimate", lty = 2, col = "red")
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|