| Date: | Thu, 24 Jan 2008 14:56:32 -0800 |
| Reply-To: | Robin High <robinh@UOREGON.EDU> |
| Sender: | "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU> |
| From: | Robin High <robinh@UOREGON.EDU> |
| Subject: | Re: How to output OutlierDetail table from PROC ARIMA procedure? |
|
| In-Reply-To: | A<4c638df7-5b38-44b5-a8f4-36a19ecb2792@v4g2000hsf.googlegroups.com> |
| Content-Type: | text/plain; charset="us-ascii" |
You can find the relevant info for each part of the output with:
ODS TRACE on / listing;
The name is found on the top line of each part of the "output added":
Output Added:
-------------
Name: OutlierSummary <--- ODS statement name
Label: Outlier Detection Summary
Template: ets.Arima.OutlierSummary
Path: Arima.OutlierSummary
-------------
Outlier Detection Summary
Maximum number searched 5
Number found 5
Significance used 0.05
Output Added:
-------------
Name: OutlierDetails <---- ods statement name
Label: Outlier Details
Template: ets.Arima.OutlierDetails
Path: Arima.OutlierDetails
-------------
So add this:
ODS OUTPUT OutlierDetails=outlier_details Outliersummary=outlier_smmry;
And be sure to add this afterwards:
ODS TRACE off;
Robin High
University of Oregon
-----Original Message-----
From: SAS(r) Discussion [mailto:SAS-L@LISTSERV.UGA.EDU] On Behalf Of
unplugged@GMAIL.COM
Sent: Thursday, January 24, 2008 12:39 PM
To: SAS-L@LISTSERV.UGA.EDU
Subject: How to output OutlierDetail table from PROC ARIMA procedure?
Hello everybody,
How do I output the Ets.Arima.OutlierDetail table from OUTLIER
statement in PROC ARIMA procedure?
I tried ods output Ets.Arima.OutlierDetail=outlier; it doesn't work.
Thanks
|