STLTcurve(RSEIS)
STLTcurve()所属R语言包:RSEIS
Short-term/Long-term Average curve
短期和术语平均曲线
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Get short-term average long-term verage ratio curve for picking
短期均线术语verage比曲线采摘
用法----------Usage----------
STLTcurve(y, dt = 0.008, fwlen = 125, bwlen = 125, stretch = 1000, MED = 255, PLOT = FALSE)
参数----------Arguments----------
参数:y
signal
信号
参数:dt
sample rate
采样率
参数:fwlen
forward window, number of samples
向前窗口,采样数
参数:bwlen
back window length, number of samples
背面窗口长度,采样数
参数:stretch
stretch multiplier
拉伸乘数
参数:MED
median smoother
中位数平滑
参数:PLOT
logical, TRUE=plot diagnostics
逻辑,TRUE =图诊断
Details
详细信息----------Details----------
Uses C-code and fast tanking algorithm written at UW
使用C代码和快速坦克的算法写在UW
值----------Value----------
sample to significant change in ratio curve
样品显着变化率曲线
(作者)----------Author(s)----------
Jonathan M. Lees<jonathan.lees.edu>
参见----------See Also----------
PSTLTcurve
PSTLTcurve
实例----------Examples----------
data(CE1)
y = CE1$y
DT = CE1$dt
sy = STLTcurve(y, dt=DT, fwlen = 25, bwlen = 25, stretch=1000, MED=255, PLOT=FALSE)
par(mfrow=c(2,1))
plot(CE1$x, CE1$y, type='l')
plot(CE1$x,sy$rat, type='l')
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|