I. Time Series For 2000-2007 & Mean
I. Time Series For 2000-2007 & Mean
> b=a[53:60,]
>b
> ts1=ts(b,frequency=1,start=c(2000,1),end=c(2007,1))
> ts1
Time Series:
Start = 2000
End = 2007
Frequency = 1
> summary(ts1)
> plot.ts(ts1)
II. Time Series 1980-2000 & Mean
> c=a[33:53,]
>c
[1] 3635 3797 3919 4071 4175 4256 4456 4591 4898 5076 4986 4903 4987 4959 4996
> ts2=ts(c,frequency=1,start=c(1980,1),end=c(2000,1))
> ts2
Time Series:
Start = 1980
End = 2000
Frequency = 1
[1] 3635 3797 3919 4071 4175 4256 4456 4591 4898 5076 4986 4903 4987 4959 4996
> summary(ts2)
> plot.ts(d)
e=HoltWinters(d,beta=FALSE,gamma=FALSE)
Call:
Smoothing parameters:
alpha: 0.9999525
beta : FALSE
gamma: FALSE
Coefficients:
[,1]
a 4923
> f=forecast.HoltWinters(e,h=7)
>f
Point Forecast Lo 80 Hi 80 Lo 95 Hi 95
In 2009 at confidence level of 80% lowest unemployment is 4707.130 and highest unemployment is
5138.870. For confidence level of 95% lowest unemployment level is 4592.856 and highest is 5253.144.
In 2010 at confidence level of 80% lowest unemployment is 4658.617 and highest unemployment is
5187.383. For confidence level of 95% lowest unemployment level is 4518.661 and highest is 5327.339.
In 2011 at confidence level of 80% lowest unemployment is 4617.718 and highest unemployment is
5228.282. For confidence level of 95% lowest unemployment level is 4456.111 and highest is 5389.889.
In 2012 at confidence level of 80% lowest unemployment is 4581.685 and highest unemployment is
5264.315. For confidence level of 95% lowest unemployment level is 4401.003 and highest is 5444.996.
In 2013 at confidence level of 80% lowest unemployment is 4549.109 and highest unemployment is
5296.891. For confidence level of 95% lowest unemployment level is 4351.182 and highest is 5494.818.
In 2014 at confidence level of 80% lowest unemployment is 4519.152 and highest unemployment is
5326.848. For confidence level of 95% lowest unemployment level is 4305.367 and highest is 5540.633.