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

3-8. RATS Basics: Functions


In addition to built-in instructions, such as LINREG and FORECAST, RATS offers more than eighty functions. Functions are used in expressions (e.g., the right hand side of SET or COMPUTE instructions), for tasks such as inverting or transposing arrays, taking natural logs or square roots, getting the month, day, or year of a given observation, drawing random numbers, and much more.

Here are a few examples:

This uses the SQRT function to store the square roots of the IMPORTS series in a series called SQ_IMPORTS:

SET SQ_IMPORTS = SQRT(IMPORTS)

For a matrix X, this uses the inverse function (INV) and the transpose function (TR) to compute the (X'X) inverse matrix:

COMPUTE XPXINV = INV(X*TR(X))

Computes the cosine of Y:

COMPUTE COSINE = COS(Y)

Computes the Kroneker product of two arrays:

COMPUTE KP = %KRONEKER(A,B)


←3-7. Forecasting →3-9. Other Estimation Techniques


←RATSのTopページに戻る