simple.lag(UsingR)
simple.lag()所属R语言包:UsingR
applies function to moving subsets of a data vector
适用于移动数据矢量的子集的功能
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Used to apply a function to subsets of a data vector. In particular, it is used to find moving averages over a certain "lag" period.
用于应用的数据向量的子集的一个函数来。特别是,它是用来寻找均线超过一定的“滞后”期间。
用法----------Usage----------
simple.lag(x, lag, FUN = mean)
参数----------Arguments----------
参数:x
a data vector
的数据向量
参数:lag
the lag amount to use.
使用的滞后量。
参数:FUN
a function to apply to the lagged data. Defaults to mean
一个函数来适用的滞后的数据。默认意味着
Details
详细信息----------Details----------
The function FUN is applied to the data x[(i-lag):i] and assigned to the (i-lag)th component of the return vector. Useful for finding moving averages.
函数FUN施加到数据×[第(i-滞后):i]和分配给第(i-滞后)返回向量的第i个分量。可用于发现移动平均线。
值----------Value----------
returns a vector.
返回一个向量。
(作者)----------Author(s)----------
Provided to R help list by Martyn Plummer
参见----------See Also----------
filter
过滤器
实例----------Examples----------
## find a moving average of the dow daily High[#找到一个移动的窗口平均每天高]
data(dowdata)
lag = 50; n = length(dowdata$High)
plot(simple.lag(dowdata$High,lag),type="l")
lines(dowdata$High[lag:n])
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|