#R_函数#Decompose decompose text

decompose {forecast} R DocumentationClassical Seasonal Decomposition by Moving Averages
Description
Decompose a time series into seasonal, trend and irregularcomponents using moving averages. Deals with additive ormultiplicative seasonal component.
Usage
#R_函数#Decompose decompose text
decompose(x, type=c("additive", "multiplicative"),filter=NULL)Arguments
xA time series.
typeThe type of seasonal component. Can be abbreviated.filterA vector of filter coefficients in reverse time order (as forAR or MA coefficients), used for filtering out the seasonalcomponent. If NULL, a moving average with symmetric window isperformed.
Details
The additive model used is:
Y[t]=T[t] + S[t] + e[t]
The multiplicative model used is:
Y[t]=T[t] * S[t] * e[t]
The function first determines the trend component using amoving average (if filter is NULL, a symmetric window with equalweights is used), and removes it from the time series. Then, theseasonal figure is computed by averaging, for each time unit, ov erall periods. The seasonal figure is then centered. Finally, theerror component is determined by removing trend and seasonal figure(recycled as needed) from the original time series.
Value
An object of class "decomposed.ts" with followingcomponents:
seasonalThe seasonal component (i.e., the repeated seasonalfigure)
figureThe estimated seasonal figure only
trendThe trend component
randomThe remainder part
typeThe value of type


#这个函数,主要用移动平均把趋势分解成季节影响,本身趋势,随机影响三部分。
#ts>xx<-ts(1:1095,start=c(2011,1,1),frequency=365)#DATA=1:1095;起始时间是2011年1月1日;一年为一个周期#decompose>f<-decompose(xx)> plot(f)





  

爱华网本文地址 » http://www.aihuau.com/a/25101015/282070.html

更多阅读

round函数怎么用 精 java round函数怎么用

round函数怎么用 精——简介round函数通常用于四舍五入求值,通常函数中会传入两个参数,第一个参数是要四舍五入的数字。第二个参数就是位数,按此位数对第一个参数进行四舍五入。round函数使用的范围很广,下面就跟随小编一起来看看round

VBA编程中MsgBox函数怎么用 vba msgbox

VBA编程中MsgBox函数怎么用——简介Excel编程中的MsgBox函数用于输出一个对话框,该函数在编程调试以及输出结果方面具有极为重要的意义。下面小编就为大家讲解一下该函数的具体使用方法。VBA编程中MsgBox函数怎么用——方法/步骤

excel公式函数详解:19 yearfrac函数用法介绍

excel公式函数详解:[19]yearfrac函数用法介绍——简介一个良好的规划对于生活品质和工作效率都极其重要,在实际生活中我们往往需要计算一年有几个项目,每个项目需要花费多长时间。不同的工作其所花的中心也应该不一样。在excel中有一个

MATLAB 各种 对数函数 用法以及实例 matlab 对数函数

MATLAB 各种 对数函数 用法以及实例——简介在MATLAB运算当中,我们常常需要求对数,在编写M文件的过程中,我们也需要表示对数,下面我就通过一些示例介绍一下如何在MATLAB中求对数。MATLAB 各种 对数函数 用法以及实例——工具/原料MATLA

excel标准差函数 excel概率标准差函数

excel标准差函数——简介excel怎么求一系列数据的标准方差呢?请往下看excel标准差函数——工具/原料excelexcel标准差函数——stdev函数excel标准差函数 1、STDEV函数估算的标准偏差是基于样本的,这里标准偏差的计算使用“n-1”方

声明:《#R_函数#Decompose decompose text》为网友卩丶霸宀丨娇宀分享!如侵犯到您的合法权益请联系我们删除