diffinv(stats)
diffinv()所属R语言包:stats
Discrete Integration: Inverse of Differencing
离散集成:差分逆
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Computes the inverse function of the lagged differences function diff.
滞后的差异计算反函数的函数diff。
用法----------Usage----------
diffinv(x, ...)
## Default S3 method:[默认方法]
diffinv(x, lag = 1, differences = 1, xi, ...)
## S3 method for class 'ts'
diffinv(x, lag = 1, differences = 1, xi, ...)
参数----------Arguments----------
参数:x
a numeric vector, matrix, or time series.
一个数值向量,矩阵,或时间序列。
参数:lag
a scalar lag parameter.
标滞后参数。
参数:differences
an integer representing the order of the difference.
一个整数,代表秩序的差异。
参数:xi
a numeric vector, matrix, or time series containing the initial values for the integrals. If missing, zeros are used.
一个数值向量,矩阵,或时间系列包含的初始值的积分。如果丢失,零使用。
参数:...
arguments passed to or from other methods.
参数传递或其他方法。
Details
详情----------Details----------
diffinv is a generic function with methods for class "ts" and default for vectors and matrices.
diffinv是一个方法的类的通用功能"ts"和default向量和矩阵。
Missing values are not handled.
不处理缺失值。
值----------Value----------
A numeric vector, matrix, or time series (the latter for the "ts" method) representing the discrete integral of x.
一个数值向量,矩阵,或时间系列(后者为"ts"方法)代表x的离散积分。
作者(S)----------Author(s)----------
A. Trapletti
参见----------See Also----------
diff
diff
举例----------Examples----------
s <- 1:10
d <- diff(s)
diffinv(d, xi = 1)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|