Calculates and caches elementary series inside SSA object
计算和缓存的基本系列内SSA对象
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Calculates all the elementary series and saves inside SSA object. After this the grouping procedure can be performed much faster.
计算所有的基本系列和节省内SSA对象。在此之后的分组的程序可以执行要快得多。
用法----------Usage----------
## S3 method for class 'ssa'
precache(this, n, ...)
参数----------Arguments----------
参数:this
SSA object.
SSA对象。
参数:n
integer, number of series to calculate and save.
整数,计算和保存多个系列。
参数:...
further arguments passed to the reconstruction routines.
进一步的参数传递给重建程序。
注意----------Note----------
In most cases it is not necessary to call this routine directly. By default functions from the package collect all elementary series they encounter during the calculations.
在大多数情况下,这是没有必要直接调用该例程。默认情况下,函数从包收集他们在计算中遇到的所有基本系列。
参见----------See Also----------
reconstruct
reconstruct
实例----------Examples----------
# Decompose 'co2' series with default parameters[分解的CO2系列使用默认参数]
s <- new.ssa(co2)
summary(s)
# Precache the stuff[预缓存的东西]
precache(s)
summary(s)