経済学書専門出版 エコノミスト社
Top書籍情報計量経済・統計ソフトウェアRATSAnother Quick Example
ファイナンス大系
リアルオプション
Excelとその応用
統計学大系
経済学大系
e-ビジネス
計量経済学
ゲーム理論
経済数学
環境問題・環境経済学
人口学講座
ナレッジマネジメント
ビジネス書
NLP理論
複雑系経済学
経営学・商学大系
マーケティング
心理学・行動科学大系
金融工学・数理ファイナンス
マクロ経済学
法情報学
企業法学講座
経営工学大系
計量経済・統計ソフトウェア
オペレーションズ・リサーチ
会計学・簿記・税務
楽しい数学
時系列分析ソフトウェア
RATS

2-5. Another Quick Example


One of the most useful aspects of working in interactive mode is that you can quickly try different things without having to re-run an entire program. For example, we can type in and run the following short program, which defines a monthly dating scheme, reads in some data, and then uses the BOXJENK instruction to estimate an ARIMA(1,1,1) model:

CALENDAR 1982 1 12
ALLOCATE 1995:12
OPEN DATA MYDATA.RAT
DATA(FOR=RATS) / Y
BOXJENK(AR=1,DIFFS=1,MA=1) Y / RESIDS

Now, after looking at the output generated by the BOXJENK estimation, we want to try estimating an ARIMA(2,1,1) model (i.e. two autoregressive terms, rather than just one). We do not need to re-execute the CALENDAR, ALLOCATE, OPEN DATA, or DATA instructions. Instead, we can just execute another BOXJENK instruction with the appropriate options.

We could type in another BOXJENK instruction, but it's faster to just edit and re-run the existing instruction. In this case, we can simply change the "AR=1" option to "AR=2", so the instruction looks like this:

BOXJENK(AR=2,DIFFS=1,MA=1) Y / RESIDS

We can now hit the key (or click on the "Run" icon) to execute the line. RATS will estimate the ARIMA(2,1,1) model and add the output to the output window, so we can easily compare the output generated by the two models.


←2-4. A Quick Example →2-6. Saving and Running Programs


←RATSのTopページに戻る