max_rel_diff(wasim)
max_rel_diff()所属R语言包:wasim
Calculate the maximum ration of the derivatives of two time series
的衍生物的两个时间序列计算出最大的配给
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Calculate the maximum ration of the derivatives of two time series
的衍生物的两个时间序列计算出最大的配给
用法----------Usage----------
max_rel_diff(x, y)
参数----------Arguments----------
参数:x
Modelled time series or array with dimension c(number_series, dim(y))
仿照时间序列或数组与尺寸c(number_series, dim(y))
参数:y
Measured time series
测得的时间序列
值----------Value----------
max(diff(x) / diff(y), na.rm=TRUE)
max(diff(x) / diff(y), na.rm=TRUE)
(作者)----------Author(s)----------
Dominik Reusser
实例----------Examples----------
data(models_dawson,package="wasim")
max_rel_diff(models_dawson[,1],models_dawson[,2])
do.call(rbind,lapply(models_dawson, FUN =max_rel_diff, y=models_dawson[,1]))
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|