estimate p=(1)(12) q=1在SAS的程序中时什么意思?
还有data investment;
input x;
t=intnx('month','01jan2000'd,_n_-1);
format t monyy.;
dif1=dif(x);
dif1_12=dif12(dif1);
cards;
16094
13983
13235
13676
13075
13006
13156
13379
13895
13589
13878
14653
17019
14910
14362
14623
13942
13943
14072
14370
15065
14485
14780
15689
16726
16642
15545
15864
15243
15097
15358
15713
16234
16015
16346
17278
21245
17937
17107
17441
17115
16957
17362
17607
18306
18251
18440
19746
22287
19893
19297
19878
19048
19018
19409
19518
20524
20078
20209
21468
24015
22668
21239
21667
20812
20849
21171
21352
22273
21893
22409
24032
29310
24482
23472
24156
23465
23469
23753
24256
25687
24964
25527
27073
27949
30628
27388
27814
26728
26881
27326
27822
29031
28318
28988
30375
36673
32454
30433
30790
30169
30181
30687
30852
31725
31318
31607
34219
;
proc gplot;
plot x*t dif1_12*t;
symbol v=star c=red i=join;
run;
proc arima;
identify var=x(1,12);
run;
estimate p=(1)(12) q=1;
run;
得到这个
Conditional Least Squares Estimation
Standard Approx
Parameter Estimate Error t Value Pr > |t| Lag
MU 28.84582 7.12572 4.05 0.0001 0
MA1,1 0.80441 0.08061 9.98 <.0001 1
AR1,1 -0.02491 0.13427 -0.19 0.8532 1
AR2,1 -0.98704 0.08620 -11.45 <.0001 12
怎么去掉这个不显著的参数?求救。。。。。