period.prod(xts)
period.prod()所属R语言包:xts
Calculate Product By Period
按期间计算产品
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Calculate a product for each period of INDEX. Essentially a rolling application of prod over a series of non-overlapping sections.
计算一个产品的各个时期的指数。本质上是一个滚动的应用程序的非重叠部分,在一系列的产品。
用法----------Usage----------
period.prod(x, INDEX)
参数----------Arguments----------
参数:x
a univariate data object
单变量的数据对象
参数:INDEX
a vector of breakpoints to calculate product on
断点的向量计算产品
Details
详细信息----------Details----------
Used to calculate a product per period given an arbitrary index of sections to be calculated over. This is an optimized function for product. There are additionally optimized versions for min, max, and sum.
用来计算给定的任意一个的指数部分,以计算每个周期的产品。这是一个优化的产品的功能。有另外的优化版本,最小值,最大值和总和。
For xts-coercible objects, an appropriate INDEX can be derived from a call to endpoints.
对于XTS-强制转换的对象,一个适当的指数可以衍生从调用到endpoints。
值----------Value----------
An xts or zoo object of products, indexed by the period endpoints.
xts或zoo对象的产品,期间端点索引。
(作者)----------Author(s)----------
Jeffrey A. Ryan
参见----------See Also----------
endpoints, period.sum,
endpoints,period.sum,
实例----------Examples----------
period.prod(c(1,1,4,2,2,6,7,8,-1,20),c(0,3,5,8,10))
data(sample_matrix)
period.prod(sample_matrix[,1],endpoints(sample_matrix))
period.prod(as.xts(sample_matrix)[,1],endpoints(sample_matrix))
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|