找回密码
 注册
查看: 295|回复: 0

R语言 UsingR包 simple.lag()函数中文帮助文档(中英文对照)

[复制链接]
发表于 2012-10-1 14:15:18 | 显示全部楼层 |阅读模式
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:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

手机版|小黑屋|生物统计家园 网站价格

GMT+8, 2024-11-27 21:00 , Processed in 0.024070 second(s), 15 queries .

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

快速回复 返回顶部 返回列表