From ???@??? Thu Feb 03 09:00:44 2000 Received: from localhost (localhost [127.0.0.1]) by amethyst.efs.mq.edu.au (8.9.1/8.9.1) with ESMTP id FAA19886 for ; Thu, 3 Feb 2000 05:30:05 +1100 Message-Id: <200002021830.FAA19886@amethyst.efs.mq.edu.au> Received: from efs01.efs.mq.edu.au by localhost with POP3 (fetchmail-5.0.0) for robt@localhost (single-drop); Thu, 03 Feb 2000 05:30:05 +1100 (EETDT) Received: from SpoolDir by EFS01 (Mercury 1.40); 3 Feb 100 05:06:15 GMT+1000 From: Stuart Glosser To: "RATS Discussion List" Subject: Estimating ARFIMA Models Date: Wed, 2 Feb 2000 12:00:41 -0600 Errors-to: Reply-to: "RATS Discussion List" Sender: Maiser@efs01.efs.mq.edu.au X-listname: Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" X-Mailer: Mercury MTS (Bindery) v1.40 What procedures are available in Rats for estimating ARFIMA models? Thanks in advance. Stuart Glosser Dept. of Economics University of Wisconsin at Whitewater Whitewater, WI 53190 From ???@??? Thu Feb 03 09:00:46 2000 Received: from localhost (localhost [127.0.0.1]) by amethyst.efs.mq.edu.au (8.9.1/8.9.1) with ESMTP id FAA19898 for ; Thu, 3 Feb 2000 05:30:06 +1100 Message-Id: <200002021830.FAA19898@amethyst.efs.mq.edu.au> Received: from efs01.efs.mq.edu.au by localhost with POP3 (fetchmail-5.0.0) for robt@localhost (single-drop); Thu, 03 Feb 2000 05:30:06 +1100 (EETDT) Received: from SpoolDir by EFS01 (Mercury 1.40); 3 Feb 100 05:17:13 GMT+1000 From: "Christopher F. Baum" To: "RATS Discussion List" Subject: Re: Estimating ARFIMA Models Date: Wed, 02 Feb 2000 13:17:04 -0500 Errors-to: Reply-to: "RATS Discussion List" Sender: Maiser@efs01.efs.mq.edu.au X-listname: X-Mailer: Mulberry (MacOS) [1.4.5, s/n P020-300786-009] (via Mercury MTS (Bindery) v1.40) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit If you use the search "ARFIMA or GPH" among Software Components on IDEAS (http://ideas.uqam.ca/ideas/) you will find several RATS modules for ARFIMA. Kit Baum Boston College Economics --On Wed, Feb 2, 2000 12:00 -0600 Stuart Glosser wrote: > What procedures are available in Rats for estimating ARFIMA models? > > Thanks in advance. > > Stuart Glosser > Dept. of Economics > University of Wisconsin at Whitewater > Whitewater, WI 53190 > > ----------------------------------------------------------------- Kit Baum baum@bc.edu http://fmwww.bc.edu/ec-v/baum.fac.html From ???@??? Fri Feb 04 08:03:28 2000 Received: from localhost (localhost [127.0.0.1]) by amethyst.efs.mq.edu.au (8.9.1/8.9.1) with ESMTP id DAA24322 for ; Fri, 4 Feb 2000 03:00:04 +1100 Message-Id: <200002031600.DAA24322@amethyst.efs.mq.edu.au> Received: from efs01.efs.mq.edu.au by localhost with POP3 (fetchmail-5.0.0) for robt@localhost (single-drop); Fri, 04 Feb 2000 03:00:04 +1100 (EETDT) Received: from SpoolDir by EFS01 (Mercury 1.40); 4 Feb 100 02:38:44 GMT+1000 From: Feng Zhu To: "RATS Discussion List" Subject: Re: Estimating ARFIMA Models Date: Thu, 3 Feb 2000 10:37:58 -0500 (EST) Errors-to: Reply-to: "RATS Discussion List" Sender: Maiser@efs01.efs.mq.edu.au X-listname: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Mailer: Mercury MTS (Bindery) v1.40 You could check the RATS home page and there are procedures for estimating ARFIMA models. Feng Zhu On Wed, 2 Feb 2000, Stuart Glosser wrote: > What procedures are available in Rats for estimating ARFIMA models? > > Thanks in advance. > > Stuart Glosser > Dept. of Economics > University of Wisconsin at Whitewater > Whitewater, WI 53190 > > From ???@??? Wed Feb 09 08:44:05 2000 Received: from localhost (localhost [127.0.0.1]) by amethyst.efs.mq.edu.au (8.9.1/8.9.1) with ESMTP id IAA18560 for ; Wed, 9 Feb 2000 08:35:07 +1100 Message-Id: <200002082135.IAA18560@amethyst.efs.mq.edu.au> Received: from efs01.efs.mq.edu.au by localhost with POP3 (fetchmail-5.0.0) for robt@localhost (single-drop); Wed, 09 Feb 2000 08:35:07 +1100 (EETDT) Received: from SpoolDir by EFS01 (Mercury 1.40); 9 Feb 100 08:30:56 GMT+1000 From: "Michele Gambera" To: "RATS Discussion List" Subject: Static Forecasting Date: Tue, 8 Feb 2000 15:27:17 -0600 Errors-to: Reply-to: "RATS Discussion List" Sender: Maiser@efs01.efs.mq.edu.au X-listname: Mime-Version: 1.0 Content-type: text/plain; charset=us-ascii X-Mailer: Mercury MTS (Bindery) v1.40 Hi, I estimate a linear equation and would like to obtain the one-step-ahead, static forecast. Since STEPS requires the name of the equation, is it correct to think that I need to specify a name for my linear regression using EQUATION and estimate it with SUR (that is, I cannot use LINREG to obtain my forecast)? Example: This one works: EQUATION firsteq serie1 # constant serie1{1 TO 4} serie2{1} serie3{1} SUR 1 # firsteq STEPS(PRINT) 1 1 1999:4 # firsteq fore1 I have to do a number of these regressions, because I use this as a benchmark against a simple VAR model. Writing the program would then be easier if I could simply use: LINREG serie1 1987:1 1999:3 # constant serie1{1 TO 4} serie2{1} serie3{1} STEPS(PRINT) 1 1 1999:4 # ??? fore1 but I do not know what I should put into STEPS instead of the question marks. As an alternative, I could write a procedure, but the equations I test have a variable number of regressors, and I don't know how to write a procedure that can take, say, from 2 to 6 variables. Any ideas? Thanks, Michele From ???@??? Wed Feb 09 09:37:37 2000 Received: from localhost (localhost [127.0.0.1]) by amethyst.efs.mq.edu.au (8.9.1/8.9.1) with ESMTP id JAA03842 for ; Wed, 9 Feb 2000 09:35:04 +1100 Message-Id: <200002082235.JAA03842@amethyst.efs.mq.edu.au> Received: from efs01.efs.mq.edu.au by localhost with POP3 (fetchmail-5.0.0) for robt@localhost (single-drop); Wed, 09 Feb 2000 09:35:04 +1100 (EETDT) Received: from SpoolDir by EFS01 (Mercury 1.40); 9 Feb 100 09:31:43 GMT+1000 From: "Estima" To: "RATS Discussion List" Subject: Re: Static Forecasting Date: Tue, 8 Feb 2000 16:33:16 -0600 Errors-to: Reply-to: "RATS Discussion List" Sender: Maiser@efs01.efs.mq.edu.au X-listname: Organization: Estima MIME-Version: 1.0 Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT X-mailer: Pegasus Mail for Win32 (v3.11) (via Mercury MTS (Bindery) v1.40) > I estimate a linear equation and would like to obtain the one-step-ahead, static > forecast. Since STEPS requires the name of the equation, is it correct to think > that I need to specify a name for my linear regression using EQUATION and > estimate it with SUR (that is, I cannot use LINREG to obtain my forecast)? Nope, just use the DEFINE option on LINREG, as shown below: > > Writing the program would then be easier if I could simply use: > > LINREG serie1 1987:1 1999:3 > # constant serie1{1 TO 4} serie2{1} serie3{1} > STEPS(PRINT) 1 1 1999:4 > # ??? fore1 LINREG(define=myeqn) serie1 1987:1 1999:3 # constant serie1{1 TO 4} serie2{1} serie3{1} STEPS(PRINT) 1 1 1999:4 # myeqn fore1 Also, just because you've defined an equation with the EQUATION command doesn't mean that you have to use SUR. You can always estimate an existin equation using LINREG--just use the EQUATION option to tell LINREG which equation to estimate: EQUATION firsteq serie1 # constant serie1{1 TO 4} serie2{1} serie3{1} linreg(equation=firstreg) You can even use LINREG if you create the equation using SYSTEM, VARIABLES, LAGS, etc. (of course, you can only estimate one equation per LINREG): system 1 to 4 variables s1 s2 s3 s4 lags 1 to 4 deterministic constant end(system) linreg(equation=1) Or, if you wanted estimate the whole system by looping over some LINREG's rather than using ESTIMATE: do I=1,4 linreg(equation=I) end do As for writing a procudure, you can use the ENTER(VARYING), which allows you to supply a supplementary card listing the variables when you call the procedure. Lots of procedurs shipped with RATS or available on our web site do that. See MIXED.SRC and MIXVAR.SRC for two examples included with RATS, or something like RLINREG.SRC on the web site. In some cases, you can just pass on the variable returned by ENTER on the supplementary card of your LINREG command. However, if you actually need to determine which variables/lags are supplied on the supplementary card, be sure to see the description of the ENTRIES option on page 5-26 of the manual and the relevant question on the RATS FAQ on the web page (and see the usage in RLINREG.SRC). Sincerely, Tom Maycock Estima > but I do not know what I should put into STEPS instead of the question marks. > > As an alternative, I could write a procedure, but the equations I test have a > variable number of regressors, > and I don't know how to write a procedure that can take, say, from 2 to 6 > variables. > > Any ideas? > > Thanks, > Michele > > -- ------------------------------------------------------------ | Estima | Sales: (800) 822-8038 | | P.O. Box 1818 | (847) 864-8772 | | Evanston, IL 60204-1818 | Support: (847) 864-1910 | | USA | Fax: (847) 864-6221 | | http://www.estima.com | estima@estima.com | ------------------------------------------------------------ From ???@??? Wed Feb 09 10:18:38 2000 Received: from localhost (localhost [127.0.0.1]) by amethyst.efs.mq.edu.au (8.9.1/8.9.1) with ESMTP id JAA24348 for ; Wed, 9 Feb 2000 09:40:04 +1100 Message-Id: <200002082240.JAA24348@amethyst.efs.mq.edu.au> Received: from efs01.efs.mq.edu.au by localhost with POP3 (fetchmail-5.0.0) for robt@localhost (single-drop); Wed, 09 Feb 2000 09:40:04 +1100 (EETDT) Received: from SpoolDir by EFS01 (Mercury 1.40); 9 Feb 100 09:34:53 GMT+1000 From: Simon.Van-Norden@hec.ca To: "RATS Discussion List" Subject: Re: Static Forecasting Date: Tue, 08 Feb 2000 17:37:17 -0500 Errors-to: Reply-to: "RATS Discussion List" Sender: Maiser@efs01.efs.mq.edu.au X-listname: Organization: Ecole des Hautes Etudes Commerciales X-Mailer: Mozilla 4.61 [en] (Win98; U) (via Mercury MTS (Bindery) v1.40) MIME-Version: 1.0 Content-Type: text/plain Content-Transfer-Encoding: 8bit Would the following produce what you're after? LINREG serie1 1987:1 1999:3 # constant serie1{1 TO 4} serie2{1} serie3{1} PRJ fore1 1999:4 1999:4 SvN Michele Gambera wrote: > > Hi, > > I estimate a linear equation and would like to obtain the one-step-ahead, static > forecast. Since STEPS requires the name of the equation, is it correct to think > that I need to specify a name for my linear regression using EQUATION and > estimate it with SUR (that is, I cannot use LINREG to obtain my forecast)? > > Example: > > This one works: > > EQUATION firsteq serie1 > # constant serie1{1 TO 4} serie2{1} serie3{1} > SUR 1 > # firsteq > STEPS(PRINT) 1 1 1999:4 > # firsteq fore1 > > I have to do a number of these regressions, because I use this as a benchmark > against a simple VAR model. > Writing the program would then be easier if I could simply use: > > LINREG serie1 1987:1 1999:3 > # constant serie1{1 TO 4} serie2{1} serie3{1} > STEPS(PRINT) 1 1 1999:4 > # ??? fore1 > > but I do not know what I should put into STEPS instead of the question marks. > > As an alternative, I could write a procedure, but the equations I test have a > variable number of regressors, > and I don't know how to write a procedure that can take, say, from 2 to 6 > variables. > > Any ideas? > > Thanks, > Michele -- Simon van Norden, Prof. agrg, www.hec.ca/pages/simon.van-norden Service de l'enseignement de la finance, cole des H.E.C. 3000 Cote-Sainte-Catherine, Montreal QC, CANADA H3T 2A7 simon.van-norden@hec.ca or (514)340-6781 or fax:(514)340-5632 From ???@??? Wed Feb 09 14:25:35 2000 Received: from localhost (localhost [127.0.0.1]) by amethyst.efs.mq.edu.au (8.9.1/8.9.1) with ESMTP id OAA24504 for ; Wed, 9 Feb 2000 14:25:04 +1100 Message-Id: <200002090325.OAA24504@amethyst.efs.mq.edu.au> Received: from efs01.efs.mq.edu.au by localhost with POP3 (fetchmail-5.0.0) for robt@localhost (single-drop); Wed, 09 Feb 2000 14:25:04 +1100 (EETDT) Received: from SpoolDir by EFS01 (Mercury 1.40); 9 Feb 100 14:20:48 GMT+1000 From: Ricardo Chaves Lima To: "RATS Discussion List" Subject: ARFIMA Date: Wed, 09 Feb 2000 01:17:07 -0200 Errors-to: Reply-to: "RATS Discussion List" Sender: Maiser@efs01.efs.mq.edu.au X-listname: X-Mailer: Mozilla 4.5 [en] (Win98; I) (via Mercury MTS (Bindery) v1.40) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Dear all Does anyone have a procedure to calculation "d" in the ARFIMA model. Thanks. Ricardo Chaves Lima Universidade FEderal de Pernabuco - Brazil rcl@netpe.com.br From ???@??? Wed Feb 09 15:18:14 2000 Received: from localhost (localhost [127.0.0.1]) by amethyst.efs.mq.edu.au (8.9.1/8.9.1) with ESMTP id PAA15706 for ; Wed, 9 Feb 2000 15:10:04 +1100 Message-Id: <200002090410.PAA15706@amethyst.efs.mq.edu.au> Received: from efs01.efs.mq.edu.au by localhost with POP3 (fetchmail-5.0.0) for robt@localhost (single-drop); Wed, 09 Feb 2000 15:10:05 +1100 (EETDT) Received: from SpoolDir by EFS01 (Mercury 1.40); 9 Feb 100 15:07:33 GMT+1000 From: "wan" To: "RATS Discussion List" Subject: RE: ARFIMA Date: Wed, 9 Feb 2000 12:06:36 +0800 Errors-to: Reply-to: "RATS Discussion List" Sender: Maiser@efs01.efs.mq.edu.au X-listname: MIME-Version: 1.0 Content-Type: text/plain; Content-Transfer-Encoding: 7bit X-Mailer: Microsoft Outlook 8.5, Build 4.71.2173.0 (via Mercury MTS (Bindery) v1.40) you may use the OX arfima package to do this!! > -----Original Message----- > From: Maiser@EFS01.efs.mq.edu.au [mailto:Maiser@EFS01.efs.mq.edu.au]On > Behalf Of Ricardo Chaves Lima > Sent: Wednesday, February 09, 2000 11:17 AM > To: RATS Discussion List > Subject: ARFIMA > > > Dear all > > Does anyone have a procedure to calculation "d" in the ARFIMA > model. Thanks. > > Ricardo Chaves Lima > Universidade FEderal de Pernabuco - Brazil > rcl@netpe.com.br > From ???@??? Thu Feb 10 08:37:57 2000 Received: from localhost (localhost [127.0.0.1]) by amethyst.efs.mq.edu.au (8.9.1/8.9.1) with ESMTP id BAA03988 for ; Thu, 10 Feb 2000 01:00:04 +1100 Message-Id: <200002091400.BAA03988@amethyst.efs.mq.edu.au> Received: from efs01.efs.mq.edu.au by localhost with POP3 (fetchmail-5.0.0) for robt@localhost (single-drop); Thu, 10 Feb 2000 01:00:04 +1100 (EETDT) Received: from SpoolDir by EFS01 (Mercury 1.40); 10 Feb 100 00:56:25 GMT+1000 From: "Christopher F. Baum" To: "RATS Discussion List" Subject: Re: ARFIMA Date: Wed, 09 Feb 2000 08:56:36 -0500 Errors-to: Reply-to: "RATS Discussion List" Sender: Maiser@efs01.efs.mq.edu.au X-listname: X-Mailer: Mulberry (MacOS) [1.4.5, s/n P020-300786-009] (via Mercury MTS (Bindery) v1.40) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit This question just appeared last week on the list. There are procedures linked to the RATS website, and there are several relevant procedures in the Boston College Statistical Software Components archive at IDEAS (http://ideas.uqam.ca). Kit Baum SSC-IDEAS --On Wed, Feb 9, 2000 1:17 -0200 Ricardo Chaves Lima wrote: > Dear all > > Does anyone have a procedure to calculation "d" in the ARFIMA > model. Thanks. > > Ricardo Chaves Lima > Universidade FEderal de Pernabuco - Brazil > rcl@netpe.com.br > ----------------------------------------------------------------- Kit Baum baum@bc.edu http://fmwww.bc.edu/ec-v/baum.fac.html From ???@??? Thu Feb 10 08:37:57 2000 Received: from localhost (localhost [127.0.0.1]) by amethyst.efs.mq.edu.au (8.9.1/8.9.1) with ESMTP id BAA15790 for ; Thu, 10 Feb 2000 01:30:04 +1100 Message-Id: <200002091430.BAA15790@amethyst.efs.mq.edu.au> Received: from efs01.efs.mq.edu.au by localhost with POP3 (fetchmail-5.0.0) for robt@localhost (single-drop); Thu, 10 Feb 2000 01:30:04 +1100 (EETDT) Received: from SpoolDir by EFS01 (Mercury 1.40); 10 Feb 100 01:04:31 GMT+1000 From: "Christopher F. Baum" To: "RATS Discussion List" Subject: RE: ARFIMA Date: Wed, 09 Feb 2000 09:04:33 -0500 Errors-to: Reply-to: "RATS Discussion List" Sender: Maiser@efs01.efs.mq.edu.au X-listname: X-Mailer: Mulberry (MacOS) [1.4.5, s/n P020-300786-009] (via Mercury MTS (Bindery) v1.40) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit That is also an excellent suggestion. Ox and its ARFIMA addon work very well, and Ox has the Sowell-type ML estimator of ARFIMA, which to my knowledge is not available in general form (arbitrary p and q) for RATS. Kit Baum --On Wed, Feb 9, 2000 12:06 +0800 wan wrote: > you may use the OX arfima package to do this!! > >> -----Original Message----- >> From: Maiser@EFS01.efs.mq.edu.au [mailto:Maiser@EFS01.efs.mq.edu.au]On >> Behalf Of Ricardo Chaves Lima >> Sent: Wednesday, February 09, 2000 11:17 AM >> To: RATS Discussion List >> Subject: ARFIMA >> >> >> Dear all >> >> Does anyone have a procedure to calculation "d" in the ARFIMA >> model. Thanks. >> >> Ricardo Chaves Lima >> Universidade FEderal de Pernabuco - Brazil >> rcl@netpe.com.br >> ----------------------------------------------------------------- Kit Baum baum@bc.edu http://fmwww.bc.edu/ec-v/baum.fac.html From ???@??? Sat Feb 12 13:46:47 2000 Received: from localhost (localhost [127.0.0.1]) by amethyst.efs.mq.edu.au (8.9.1/8.9.1) with ESMTP id JAA24834 for ; Sat, 12 Feb 2000 09:50:04 +1100 Message-Id: <200002112250.JAA24834@amethyst.efs.mq.edu.au> Received: from efs01.efs.mq.edu.au by localhost with POP3 (fetchmail-5.0.0) for robt@localhost (single-drop); Sat, 12 Feb 2000 09:50:04 +1100 (EETDT) Received: from SpoolDir by EFS01 (Mercury 1.40); 12 Feb 100 09:49:02 GMT+1000 From: Chakib To: "RATS Discussion List" Date: Fri, 11 Feb 2000 22:46:40 +0000 Errors-to: Reply-to: "RATS Discussion List" Sender: Maiser@efs01.efs.mq.edu.au X-listname: X-Mailer: Windows Eudora Pro Version 3.0.1 (32) [F] (via Mercury MTS (Bindery) v1.40) Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Dear Fellow RATS users, How to print a constant as a series? Thank you From ???@??? Sat Feb 12 16:44:37 2000 Received: from localhost (localhost [127.0.0.1]) by amethyst.efs.mq.edu.au (8.9.1/8.9.1) with ESMTP id QAA12464 for ; Sat, 12 Feb 2000 16:35:04 +1100 Message-Id: <200002120535.QAA12464@amethyst.efs.mq.edu.au> Received: from efs01.efs.mq.edu.au by localhost with POP3 (fetchmail-5.0.0) for robt@localhost (single-drop); Sat, 12 Feb 2000 16:35:04 +1100 (EETDT) Received: from SpoolDir by EFS01 (Mercury 1.40); 12 Feb 100 16:31:10 GMT+1000 From: gkoutmos To: "RATS Discussion List" Subject: RE: (none) Date: Sat, 12 Feb 2000 00:20:48 -0500 Errors-to: Reply-to: "RATS Discussion List" Sender: Maiser@efs01.efs.mq.edu.au X-listname: MIME-version: 1.0 X-Mailer: WebMail (Hydra) SMTP v3.51.06 (via Mercury MTS (Bindery) v1.40) Content-type: text/plain Content-transfer-encoding: 7bit **Use the command set as follows: set x = 5 **then print using print / x >===== Original Message From RATS Discussion List ===== >Dear Fellow RATS users, > >How to print a constant as a series? >Thank you From ???@??? Mon Feb 14 13:47:51 2000 Received: from localhost (localhost [127.0.0.1]) by amethyst.efs.mq.edu.au (8.9.1/8.9.1) with ESMTP id VAA12294 for ; Sun, 13 Feb 2000 21:55:04 +1100 Message-Id: <200002131055.VAA12294@amethyst.efs.mq.edu.au> Received: from efs01.efs.mq.edu.au by localhost with POP3 (fetchmail-5.0.0) for robt@localhost (single-drop); Sun, 13 Feb 2000 21:55:04 +1100 (EETDT) Received: from SpoolDir by EFS01 (Mercury 1.40); 13 Feb 100 21:50:19 GMT+1000 From: Ying-Man Chung To: "RATS Discussion List" Subject: RE:geometric average Date: Sun, 13 Feb 2000 02:50:10 -0800 (PST) Errors-to: Reply-to: "RATS Discussion List" Sender: Maiser@efs01.efs.mq.edu.au X-listname: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mercury MTS (Bindery) v1.40 Dear RATS users, Let time series data be X which is the end of month data for the money supply. I now want to generate a new time series data Y, which is formed as a geometric average of data x. would you like to let me know the Rats command to perform it, please? Thanks a lot. regards, Sarah, SYC __________________________________________________ Do You Yahoo!? Talk to your friends online with Yahoo! Messenger. http://im.yahoo.com From ???@??? Mon Feb 14 13:47:59 2000 Received: from localhost (localhost [127.0.0.1]) by amethyst.efs.mq.edu.au (8.9.1/8.9.1) with ESMTP id BAA27108 for ; Mon, 14 Feb 2000 01:30:04 +1100 Message-Id: <200002131430.BAA27108@amethyst.efs.mq.edu.au> Received: from efs01.efs.mq.edu.au by localhost with POP3 (fetchmail-5.0.0) for robt@localhost (single-drop); Mon, 14 Feb 2000 01:30:04 +1100 (EETDT) Received: from SpoolDir by EFS01 (Mercury 1.40); 14 Feb 100 01:05:57 GMT+1000 From: Christopher F Baum To: "RATS Discussion List" Subject: RE:geometric average Date: Sun, 13 Feb 2000 09:05:24 -0500 Errors-to: Reply-to: "RATS Discussion List" Sender: Maiser@efs01.efs.mq.edu.au X-listname: X-Mailer: Mulberry (MacOS) [1.4.5, s/n P020-300786-009] (via Mercury MTS (Bindery) v1.40) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit The geometric mean is just the exp[ average [ ln(x) ] ]. Log the series with the LOG command. I presume you want a moving average, so use FILTER to specify the moving average, and apply EXP to the output of the FILTER. Kit Baum Boston College Economics --On Sun, Feb 13, 2000 2:50 -0800 Ying-Man Chung wrote: > Dear RATS users, > > Let time series data be X which is the end of month > data for the money supply. > > I now want to generate a new time series data Y, which > is formed as a geometric average of data x. > > would you like to let me know the Rats command to > perform it, please? > > > Thanks a lot. > > regards, > > Sarah, > SYC > __________________________________________________ > Do You Yahoo!? > Talk to your friends online with Yahoo! Messenger. > http://im.yahoo.com From ???@??? Tue Feb 15 21:49:02 2000 Received: from localhost (localhost [127.0.0.1]) by amethyst.efs.mq.edu.au (8.9.1/8.9.1) with ESMTP id UAA24394 for ; Tue, 15 Feb 2000 20:35:04 +1100 Message-Id: <200002150935.UAA24394@amethyst.efs.mq.edu.au> Received: from efs01.efs.mq.edu.au by localhost with POP3 (fetchmail-5.0.0) for robt@localhost (single-drop); Tue, 15 Feb 2000 20:35:04 +1100 (EETDT) Received: from SpoolDir by EFS01 (Mercury 1.40); 15 Feb 100 20:31:55 GMT+1000 From: "Alejandro Jara" To: "RATS Discussion List" Subject: X-11 seasonal adjustment Date: Tue, 15 Feb 2000 01:33:07 -0800 Errors-to: Reply-to: "RATS Discussion List" Sender: Maiser@efs01.efs.mq.edu.au X-listname: X-Mailer: Microsoft Internet Mail 4.70.1155 (via Mercury MTS (Bindery) v1.40) MIME-Version: 1.0 Content-Type: text/plain Content-Transfer-Encoding: 7bit Dear friends, does anybody knows how to seasonally adjust a series using the X-11 method...if you have a procedure or know how to do it I'd really appreciate your help, thanks, alejandro jara From ???@??? Wed Feb 16 07:12:46 2000 Received: from localhost (localhost [127.0.0.1]) by amethyst.efs.mq.edu.au (8.9.1/8.9.1) with ESMTP id XAA17816 for ; Tue, 15 Feb 2000 23:30:04 +1100 Message-Id: <200002151230.XAA17816@amethyst.efs.mq.edu.au> Received: from efs01.efs.mq.edu.au by localhost with POP3 (fetchmail-5.0.0) for robt@localhost (single-drop); Tue, 15 Feb 2000 23:30:04 +1100 (EETDT) Received: from SpoolDir by EFS01 (Mercury 1.40); 15 Feb 100 23:12:30 GMT+1000 From: "Iacoviello,M (pg)" To: "RATS Discussion List" Subject: RE: X-11 seasonal adjustment Date: Tue, 15 Feb 2000 12:10:18 -0000 Errors-to: Reply-to: "RATS Discussion List" Sender: Maiser@efs01.efs.mq.edu.au X-listname: MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2448.0) (via Mercury MTS (Bindery) v1.40) Content-Type: text/plain Hello I know that the procedure is fairly easy to apply if you use the econometric software E-Views. I would be very happy to know if Rats does it too, because so far I have always transferred my non seasonally adjusted series back and forth between Rats and E-views Matteo ********************************************************* Matteo Iacoviello LSE - Department of Economics Houghton Street WC2A 2AE London - UK 0044 - 171 - 9556216 ********************************************************* > -----Original Message----- > From: Alejandro Jara [SMTP:ajara@ucla.edu] > Sent: 15 February 2000 09:33 > To: RATS Discussion List > Subject: X-11 seasonal adjustment > > Dear friends, > does anybody knows how to seasonally adjust a series using > the X-11 method...if you have a procedure or know how to do it > I'd really appreciate your help, > thanks, > alejandro jara From ???@??? Wed Feb 16 07:13:24 2000 Received: from localhost (localhost [127.0.0.1]) by amethyst.efs.mq.edu.au (8.9.1/8.9.1) with ESMTP id BAA24378 for ; Wed, 16 Feb 2000 01:30:05 +1100 Message-Id: <200002151430.BAA24378@amethyst.efs.mq.edu.au> Received: from efs01.efs.mq.edu.au by localhost with POP3 (fetchmail-5.0.0) for robt@localhost (single-drop); Wed, 16 Feb 2000 01:30:05 +1100 (EETDT) Received: from SpoolDir by EFS01 (Mercury 1.40); 16 Feb 100 01:06:53 GMT+1000 From: Stuart Glosser To: "RATS Discussion List" Subject: RE: X-11 seasonal adjustment Date: Tue, 15 Feb 2000 08:04:33 -0600 Errors-to: Reply-to: "RATS Discussion List" Sender: Maiser@efs01.efs.mq.edu.au X-listname: Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" X-Mailer: Mercury MTS (Bindery) v1.40 >> Dear friends, >> does anybody knows how to seasonally adjust a series using >> the X-11 method...if you have a procedure or know how to do it >> I'd really appreciate your help, >> thanks, > >I know that the procedure is fairly easy to apply if you use the econometric >software E-Views. I would be very happy to know if Rats does it too, because >so far I have always transferred my non seasonally adjusted series back and >forth between Rats and E-views > >> Check out http://www.estima.com/x11info.htm. It explains the EZ-X11 program written by estima. --Stuart Glosser From ???@??? Wed Feb 16 07:13:26 2000 Received: from localhost (localhost [127.0.0.1]) by amethyst.efs.mq.edu.au (8.9.1/8.9.1) with ESMTP id BAA22850 for ; Wed, 16 Feb 2000 01:30:05 +1100 Message-Id: <200002151430.BAA22850@amethyst.efs.mq.edu.au> Received: from efs01.efs.mq.edu.au by localhost with POP3 (fetchmail-5.0.0) for robt@localhost (single-drop); Wed, 16 Feb 2000 01:30:06 +1100 (EETDT) Received: from SpoolDir by EFS01 (Mercury 1.40); 16 Feb 100 01:13:39 GMT+1000 From: Marius Ooms To: "RATS Discussion List" Subject: Re: X-11 seasonal adjustment Date: Tue, 15 Feb 2000 15:14:02 +0100 Errors-to: Reply-to: "RATS Discussion List" Sender: Maiser@efs01.efs.mq.edu.au X-listname: Organization: Econometric Institute Erasmus University Rotterdam X-Mailer: Mozilla 4.51 [en] (WinNT; I) (via Mercury MTS (Bindery) v1.40) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Dear All, X-11/12 is a free executable! It is available from the Census Bureau last version Feb 2000: http://ftp.census.gov/pub/ts/x12a/final/pc/Readme See also http://www.eur.nl/few/ei/links/#CensusX12a Fortran code is also free. X12-Arima for GiveWin gives a nice Windows interface around X12-arima, ilustrating its MANY options and tests and it is not confined to a maximum of 600 observations (as the old X11 executable used (with a shell) in other packages) see, http://www.timberlake.co.uk/software/x12arima/x12arima.htm#X-12-ARIMA Regards, -- Marius Ooms mailto:ooms@few.eur.nl Econometric Institute, Erasmus University Rotterdam Editor Econometric Links The Econometrics Journal http://www.eur.nl/few/ei/links From ???@??? Wed Feb 16 07:13:43 2000 Received: from localhost (localhost [127.0.0.1]) by amethyst.efs.mq.edu.au (8.9.1/8.9.1) with ESMTP id EAA17902 for ; Wed, 16 Feb 2000 04:30:04 +1100 Message-Id: <200002151730.EAA17902@amethyst.efs.mq.edu.au> Received: from efs01.efs.mq.edu.au by localhost with POP3 (fetchmail-5.0.0) for robt@localhost (single-drop); Wed, 16 Feb 2000 04:30:04 +1100 (EETDT) Received: from SpoolDir by EFS01 (Mercury 1.40); 16 Feb 100 04:04:55 GMT+1000 From: "Estima" To: "RATS Discussion List" Subject: Re: X-11 seasonal adjustment Date: Tue, 15 Feb 2000 11:04:02 -0600 Errors-to: Reply-to: "RATS Discussion List" Sender: Maiser@efs01.efs.mq.edu.au X-listname: Organization: Estima MIME-Version: 1.0 Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT X-mailer: Pegasus Mail for Win32 (v3.11) (via Mercury MTS (Bindery) v1.40) > Dear friends, > does anybody knows how to seasonally adjust a series using > the X-11 method...if you have a procedure or know how to do it > I'd really appreciate your help, As someone else noted, we do offer a stand-alone EZ-X11 software package for seasonally adjusting data using the X11 procedure. However, you can now also obtain a special version of WinRATS-32 that includes the X11 procedure as a built-in instruction. You'll need to own (or purchase) the latest version of WinRATS-32 (4.31), and purchase EZ-X11 for $150. Upon request, we can include a special version of WinRATS that implements X11 as a new instruction. This is particularly handy for applying the X11 procedure to a large number of series, because you can do it in a loop. If you're not in a hurry, you might want to wait a while--it may be a cheaper add-on in the upcoming Version 5. Sincerely, Tom Maycock Estima -- ------------------------------------------------------------ | Estima | Sales: (800) 822-8038 | | P.O. Box 1818 | (847) 864-8772 | | Evanston, IL 60204-1818 | Support: (847) 864-1910 | | USA | Fax: (847) 864-6221 | | http://www.estima.com | estima@estima.com | ------------------------------------------------------------ From ???@??? Wed Feb 16 07:14:00 2000 Received: from localhost (localhost [127.0.0.1]) by amethyst.efs.mq.edu.au (8.9.1/8.9.1) with ESMTP id GAA17744 for ; Wed, 16 Feb 2000 06:00:04 +1100 Message-Id: <200002151900.GAA17744@amethyst.efs.mq.edu.au> Received: from efs01.efs.mq.edu.au by localhost with POP3 (fetchmail-5.0.0) for robt@localhost (single-drop); Wed, 16 Feb 2000 06:00:04 +1100 (EETDT) Received: from SpoolDir by EFS01 (Mercury 1.40); 16 Feb 100 05:34:53 GMT+1000 From: "Bob Shain" To: "RATS Discussion List" Subject: Panel ECM Model in RATS Anyone? Date: Tue, 15 Feb 2000 13:35:33 -0500 Errors-to: Reply-to: "RATS Discussion List" Sender: Maiser@efs01.efs.mq.edu.au X-listname: MIME-Version: 1.0 Content-Type: text/plain; Content-Transfer-Encoding: 7bit X-Mailer: Microsoft Outlook 8.5, Build 4.71.2173.0 (via Mercury MTS (Bindery) v1.40) I've really not seen this in any language though I've seen a parameter calculation for the cointegration vector-- but just thought I would ask. From ???@??? Wed Feb 16 07:14:26 2000 Received: from localhost (localhost [127.0.0.1]) by amethyst.efs.mq.edu.au (8.9.1/8.9.1) with ESMTP id GAA27028 for ; Wed, 16 Feb 2000 06:05:04 +1100 Message-Id: <200002151905.GAA27028@amethyst.efs.mq.edu.au> Received: from efs01.efs.mq.edu.au by localhost with POP3 (fetchmail-5.0.0) for robt@localhost (single-drop); Wed, 16 Feb 2000 06:05:04 +1100 (EETDT) Received: from SpoolDir by EFS01 (Mercury 1.40); 16 Feb 100 06:03:27 GMT+1000 From: "Estima" To: "RATS Discussion List" Subject: Just testing--please ignore Date: Tue, 15 Feb 2000 13:08:22 -0600 Errors-to: Reply-to: "RATS Discussion List" Sender: Maiser@efs01.efs.mq.edu.au X-listname: Organization: Estima MIME-Version: 1.0 Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT X-mailer: Pegasus Mail for Win32 (v3.11) (via Mercury MTS (Bindery) v1.40) Just a test message to verify the instructions on un-subscribing from the list are correct... -- ------------------------------------------------------------ | Estima | Sales: (800) 822-8038 | | P.O. Box 1818 | (847) 864-8772 | | Evanston, IL 60204-1818 | Support: (847) 864-1910 | | USA | Fax: (847) 864-6221 | | http://www.estima.com | estima@estima.com | ------------------------------------------------------------ From ???@??? Wed Feb 16 07:14:29 2000 Received: from localhost (localhost [127.0.0.1]) by amethyst.efs.mq.edu.au (8.9.1/8.9.1) with ESMTP id GAA25008 for ; Wed, 16 Feb 2000 06:15:05 +1100 Message-Id: <200002151915.GAA25008@amethyst.efs.mq.edu.au> Received: from efs01.efs.mq.edu.au by localhost with POP3 (fetchmail-5.0.0) for robt@localhost (single-drop); Wed, 16 Feb 2000 06:15:05 +1100 (EETDT) Received: from SpoolDir by EFS01 (Mercury 1.40); 16 Feb 100 06:14:34 GMT+1000 From: "Michele Gambera" To: "RATS Discussion List" Subject: Re: Panel ECM Model in RATS Anyone? Date: Tue, 15 Feb 2000 13:10:59 -0600 Errors-to: Reply-to: "RATS Discussion List" Sender: Maiser@efs01.efs.mq.edu.au X-listname: Mime-Version: 1.0 Content-type: text/plain; charset=us-ascii X-Mailer: Mercury MTS (Bindery) v1.40 Peter Pedroni at Indiana University: ppedroni@indiana.edu wrote panel cointegration routines in RATS. He has been doing a lot of innovative research in the field. Best, Michele From ???@??? Wed Feb 16 07:14:42 2000 Received: from localhost (localhost [127.0.0.1]) by amethyst.efs.mq.edu.au (8.9.1/8.9.1) with ESMTP id HAA12590 for ; Wed, 16 Feb 2000 07:10:04 +1100 Message-Id: <200002152010.HAA12590@amethyst.efs.mq.edu.au> Received: from efs01.efs.mq.edu.au by localhost with POP3 (fetchmail-5.0.0) for robt@localhost (single-drop); Wed, 16 Feb 2000 07:10:04 +1100 (EETDT) Received: from SpoolDir by EFS01 (Mercury 1.40); 16 Feb 100 07:08:56 GMT+1000 From: "Bob Shain" To: "RATS Discussion List" Subject: RE: Panel ECM Model in RATS Anyone? Date: Tue, 15 Feb 2000 15:09:42 -0500 Errors-to: Reply-to: "RATS Discussion List" Sender: Maiser@efs01.efs.mq.edu.au X-listname: MIME-Version: 1.0 Content-Type: text/plain; Content-Transfer-Encoding: 7bit X-Mailer: Microsoft Outlook 8.5, Build 4.71.2173.0 (via Mercury MTS (Bindery) v1.40) Yes, I have it, but theres no ECM version of it -- at least not yet. -----Original Message----- From: Maiser@EFS01.efs.mq.edu.au [mailto:Maiser@EFS01.efs.mq.edu.au]On Behalf Of Michele Gambera Sent: Tuesday, February 15, 2000 2:11 PM To: RATS Discussion List Subject: Re: Panel ECM Model in RATS Anyone? Peter Pedroni at Indiana University: ppedroni@indiana.edu wrote panel cointegration routines in RATS. He has been doing a lot of innovative research in the field. Best, Michele From ???@??? Fri Feb 18 10:38:35 2000 Received: from localhost (localhost [127.0.0.1]) by amethyst.efs.mq.edu.au (8.9.1/8.9.1) with ESMTP id QAA18550 for ; Thu, 17 Feb 2000 16:25:04 +1100 Message-Id: <200002170525.QAA18550@amethyst.efs.mq.edu.au> Received: from efs01.efs.mq.edu.au by localhost with POP3 (fetchmail-5.0.0) for robt@localhost (single-drop); Thu, 17 Feb 2000 16:25:04 +1100 (EETDT) Received: from SpoolDir by EFS01 (Mercury 1.40); 17 Feb 100 16:21:44 GMT+1000 From: "John P. Burkett" To: "RATS Discussion List" Subject: regression line in scatter plot Date: Thu, 17 Feb 2000 04:01:31 +0000 Errors-to: Reply-to: "RATS Discussion List" Sender: Maiser@efs01.efs.mq.edu.au X-listname: Organization: University of Rhode Island X-Mailer: Mozilla 4.61 [en] (X11; I; Linux 2.2.12 i686) (via Mercury MTS (Bindery) v1.40) MIME-Version: 1.0 Content-Type: multipart/alternative; Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit I have forgotten how to superimpose a simple regression line on a scatter plot. It would be easy if the data could be plotted with dots or symbols and the fitted values with lines, but SCATTER seems to apply one STYLE to all supplemental cards. Can someone remind me what to do? -- John P. Burkett Department of Economics University of Rhode Island 10 Chafee Road, Suite 3 Kingston, RI 02881-0808 phone (401) 874-4122 fax (401) 874-2858 --------------9CF044A4742CBD1E247FAE47 Content-Type: text/html; charset=us-ascii Content-Transfer-Encoding: 7bit I have forgotten how to superimpose a simple regression line on a scatter plot.
It would be easy if the data could be plotted with dots or symbols and the fitted values with lines,
but SCATTER seems to apply one STYLE to all supplemental cards.
Can someone remind me what to do?
-- 
John P. Burkett
Department of Economics
University of Rhode Island
10 Chafee Road, Suite 3
Kingston, RI 02881-0808

phone (401) 874-4122
fax   (401) 874-2858
  --------------9CF044A4742CBD1E247FAE47-- From ???@??? Fri Feb 18 10:39:34 2000 Received: from localhost (localhost [127.0.0.1]) by amethyst.efs.mq.edu.au (8.9.1/8.9.1) with ESMTP id TAA12438 for ; Thu, 17 Feb 2000 19:20:07 +1100 Message-Id: <200002170820.TAA12438@amethyst.efs.mq.edu.au> Received: from efs01.efs.mq.edu.au by localhost with POP3 (fetchmail-5.0.0) for robt@localhost (single-drop); Thu, 17 Feb 2000 19:20:07 +1100 (EETDT) Received: from SpoolDir by EFS01 (Mercury 1.40); 17 Feb 100 19:15:46 GMT+1000 From: Sebastian.SCHICH@oecd.org To: "RATS Discussion List" Subject: RE: regression line in scatter plot Date: Thu, 17 Feb 2000 09:16:28 +0100 Errors-to: Reply-to: "RATS Discussion List" Sender: Maiser@efs01.efs.mq.edu.au X-listname: MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2448.0) (via Mercury MTS (Bindery) v1.40) Content-Type: text/plain; Dear John, underneath one example. Define the regression line first ("fitted_usge_1"). Then draw one scatterplot (containing the dots) on top of another (containing the line). I have not checked it as it is shown below, but it works fine as part of a multipanel graph. LINREG(NOPRINT) dlcpi_usge_1 start end-12 #constant dlyr_usge_1 PRJ fitted_usge_1 ... SCATTER(VMAX=0.06,VMIN=-0.06,HMAX=0.07,HMIN=-0.03,$ SUBHEADER='1 YEAR', HEADER = 'United States and Germany',$ STYLE=SYMBOL) 1 # dlcpi_usge_1 dlyr_usge_1 start end-12 SCATTER(VMAX=0.06,VMIN=-0.06,HMAX=0.07,HMIN=-0.03,$ SUBHEADER='1 YEAR',HEADER = 'United States and Germany',$ STYLE=LINE) 1 # fitted_usge_1 dlyr_usge_1 start end-12 Good luck, Sebastian -----Original Message----- From: John P. Burkett [mailto:burkett@uriacc.uri.edu] Sent: Thursday, February 17, 2000 5:02 AM To: RATS Discussion List Subject: regression line in scatter plot --------------9CF044A4742CBD1E247FAE47 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit I have forgotten how to superimpose a simple regression line on a scatter plot. It would be easy if the data could be plotted with dots or symbols and the fitted values with lines, but SCATTER seems to apply one STYLE to all supplemental cards. Can someone remind me what to do? -- John P. Burkett Department of Economics University of Rhode Island 10 Chafee Road, Suite 3 Kingston, RI 02881-0808 phone (401) 874-4122 fax (401) 874-2858 --------------9CF044A4742CBD1E247FAE47 Content-Type: text/html; charset=us-ascii Content-Transfer-Encoding: 7bit I have forgotten how to superimpose a simple regression line on a scatter plot.
It would be easy if the data could be plotted with dots or symbols and the fitted values with lines,
but SCATTER seems to apply one STYLE to all supplemental cards.
Can someone remind me what to do?
-- 
John P. Burkett
Department of Economics
University of Rhode Island
10 Chafee Road, Suite 3
Kingston, RI 02881-0808

phone (401) 874-4122
fax   (401) 874-2858
  --------------9CF044A4742CBD1E247FAE47-- From ???@??? Fri Feb 18 10:39:49 2000 Received: from localhost (localhost [127.0.0.1]) by amethyst.efs.mq.edu.au (8.9.1/8.9.1) with ESMTP id CAA23198 for ; Fri, 18 Feb 2000 02:30:07 +1100 Message-Id: <200002171530.CAA23198@amethyst.efs.mq.edu.au> Received: from efs01.efs.mq.edu.au by localhost with POP3 (fetchmail-5.0.0) for robt@localhost (single-drop); Fri, 18 Feb 2000 02:30:07 +1100 (EETDT) Received: from SpoolDir by EFS01 (Mercury 1.40); 18 Feb 100 02:24:04 GMT+1000 From: "Estima" To: "RATS Discussion List" Subject: RE: regression line in scatter plot Date: Thu, 17 Feb 2000 09:29:45 -0600 Errors-to: Reply-to: "RATS Discussion List" Sender: Maiser@efs01.efs.mq.edu.au X-listname: Organization: Estima MIME-Version: 1.0 Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT X-mailer: Pegasus Mail for Win32 (v3.11) (via Mercury MTS (Bindery) v1.40) > SCATTER(VMAX=0.06,VMIN=-0.06,HMAX=0.07,HMIN=-0.03,$ > SUBHEADER='1 YEAR', HEADER = 'United States and Germany',$ > STYLE=SYMBOL) 1 > # dlcpi_usge_1 dlyr_usge_1 start end-12 > SCATTER(VMAX=0.06,VMIN=-0.06,HMAX=0.07,HMIN=-0.03,$ > SUBHEADER='1 YEAR',HEADER = 'United States and Germany',$ > STYLE=LINE) 1 > # fitted_usge_1 dlyr_usge_1 start end-12 > You need to enclose the above in an SPGRAPH block in order for the two graphs to overlay. If you just want one graph on the page, you can do: spgraph(hfield=1,vfield=1) ...scatter commands... spgraph(done) Just make sure that you use exactly the same options on both graphs (except for STYLE) so that all the headers, scales, etc. are the same- -the graphs should then overlay seamlessly. Version 5 will include an OVERLAY option on SCATTER, basically like the that has been available on GRAPH since 4.2, which will make this much easier. Sincerely, Tom Maycock Estima -- ------------------------------------------------------------ | Estima | Sales: (800) 822-8038 | | P.O. Box 1818 | (847) 864-8772 | | Evanston, IL 60204-1818 | Support: (847) 864-1910 | | USA | Fax: (847) 864-6221 | | http://www.estima.com | estima@estima.com | ------------------------------------------------------------ From ???@??? Fri Feb 18 10:40:07 2000 Received: from localhost (localhost [127.0.0.1]) by amethyst.efs.mq.edu.au (8.9.1/8.9.1) with ESMTP id IAA12582 for ; Fri, 18 Feb 2000 08:05:04 +1100 Message-Id: <200002172105.IAA12582@amethyst.efs.mq.edu.au> Received: from efs01.efs.mq.edu.au by localhost with POP3 (fetchmail-5.0.0) for robt@localhost (single-drop); Fri, 18 Feb 2000 08:05:04 +1100 (EETDT) Received: from SpoolDir by EFS01 (Mercury 1.40); 18 Feb 100 08:03:29 GMT+1000 From: "Holloway, James" To: "RATS Discussion List" Subject: Cusum tests Date: Fri, 18 Feb 2000 08:02:55 +1100 Errors-to: Reply-to: "RATS Discussion List" Sender: Maiser@efs01.efs.mq.edu.au X-listname: MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2448.0) (via Mercury MTS (Bindery) v1.40) Content-Type: text/plain I wish to run the cusum and cusum of squares stability tests - does anyone have these procedures ? From ???@??? Fri Feb 18 10:40:12 2000 Received: from localhost (localhost [127.0.0.1]) by amethyst.efs.mq.edu.au (8.9.1/8.9.1) with ESMTP id JAA15774 for ; Fri, 18 Feb 2000 09:10:04 +1100 Message-Id: <200002172210.JAA15774@amethyst.efs.mq.edu.au> Received: from efs01.efs.mq.edu.au by localhost with POP3 (fetchmail-5.0.0) for robt@localhost (single-drop); Fri, 18 Feb 2000 09:10:04 +1100 (EETDT) Received: from SpoolDir by EFS01 (Mercury 1.40); 18 Feb 100 09:06:29 GMT+1000 From: Jim Lee To: "RATS Discussion List" Subject: Re: Cusum tests Date: Thu, 17 Feb 2000 16:07:35 -0600 Errors-to: Reply-to: "RATS Discussion List" Sender: Maiser@efs01.efs.mq.edu.au X-listname: Organization: TAMU-CC X-Mailer: Mozilla 4.61 [en] (Win95; I) (via Mercury MTS (Bindery) v1.40) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Talking about free lunch, I think the best program on earth to run CUSUM-type tests is an Excel program written by Ted Bos. It can be downloaded from: http://bos.business.uab.edu/cusum/index.htm "Holloway, James" wrote: > I wish to run the cusum and cusum of squares stability tests - does anyone > have these procedures ? -- Jim Lee Texas A&M University-Corpus Christi 6300 Ocean Drive Corpus Christi, Texas 78412 Phone: 361.825.5831 From ???@??? Sat Feb 19 07:49:36 2000 Received: from localhost (localhost [127.0.0.1]) by amethyst.efs.mq.edu.au (8.9.1/8.9.1) with ESMTP id SAA12636 for ; Fri, 18 Feb 2000 18:10:05 +1100 Message-Id: <200002180710.SAA12636@amethyst.efs.mq.edu.au> Received: from efs01.efs.mq.edu.au by localhost with POP3 (fetchmail-5.0.0) for robt@localhost (single-drop); Fri, 18 Feb 2000 18:10:05 +1100 (EETDT) Received: from SpoolDir by EFS01 (Mercury 1.40); 18 Feb 100 18:05:28 GMT+1000 From: ParisonC@bot.or.th To: "RATS Discussion List" Subject: RE: Cusum tests Date: Fri, 18 Feb 2000 13:57:51 +0700 Errors-to: Reply-to: "RATS Discussion List" Sender: Maiser@efs01.efs.mq.edu.au X-listname: MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2650.21) (via Mercury MTS (Bindery) v1.40) Content-Type: text/plain; Content-Transfer-Encoding: 8bit Try E-views Parisun Chantahanom <<...OLE_Obj...>> -----ۂ絎թ----- : Jim Lee [SMTP:jlee@falcon.tamucc.edu] 揤׏: 18 2543 5:08 : RATS Discussion List ׏: Re: Cusum tests Talking about free lunch, I think the best program on earth to run CUSUM-type tests is an Excel program written by Ted Bos. It can be downloaded from: http://bos.business.uab.edu/cusum/index.htm "Holloway, James" wrote: > I wish to run the cusum and cusum of squares stability tests - does anyone > have these procedures ? -- Jim Lee Texas A&M University-Corpus Christi 6300 Ocean Drive Corpus Christi, Texas 78412 Phone: 361.825.5831 From ???@??? Sat Feb 19 07:50:19 2000 Received: from localhost (localhost [127.0.0.1]) by amethyst.efs.mq.edu.au (8.9.1/8.9.1) with ESMTP id TAA18464 for ; Fri, 18 Feb 2000 19:55:04 +1100 Message-Id: <200002180855.TAA18464@amethyst.efs.mq.edu.au> Received: from efs01.efs.mq.edu.au by localhost with POP3 (fetchmail-5.0.0) for robt@localhost (single-drop); Fri, 18 Feb 2000 19:55:04 +1100 (EETDT) Received: from SpoolDir by EFS01 (Mercury 1.40); 18 Feb 100 19:52:44 GMT+1000 From: "Holloway, James" To: "RATS Discussion List" Subject: RE: Cusum tests Date: Fri, 18 Feb 2000 18:56:54 +1100 Errors-to: Reply-to: "RATS Discussion List" Sender: Maiser@efs01.efs.mq.edu.au X-listname: MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2448.0) (via Mercury MTS (Bindery) v1.40) Content-Type: text/plain Thanks - very easy to use > -----Original Message----- > From: Jim Lee [SMTP:jlee@falcon.tamucc.edu] > Sent: Friday, 18 February 2000 9:08 > To: RATS Discussion List > Subject: Re: Cusum tests > > Talking about free lunch, I think the best program on earth to run > CUSUM-type > tests is an Excel program written by Ted Bos. It can be downloaded from: > > http://bos.business.uab.edu/cusum/index.htm > > "Holloway, James" wrote: > > > I wish to run the cusum and cusum of squares stability tests - does > anyone > > have these procedures ? > > -- > Jim Lee > Texas A&M University-Corpus Christi > 6300 Ocean Drive > Corpus Christi, Texas 78412 > Phone: 361.825.5831 > From ???@??? Wed Feb 23 20:45:14 2000 Received: from localhost (localhost [127.0.0.1]) by amethyst.efs.mq.edu.au (8.9.1/8.9.1) with ESMTP id TAA14306 for ; Wed, 23 Feb 2000 19:50:04 +1100 Message-Id: <200002230850.TAA14306@amethyst.efs.mq.edu.au> Received: from efs01.efs.mq.edu.au by localhost with POP3 (fetchmail-5.0.0) for robt@localhost (single-drop); Wed, 23 Feb 2000 19:50:04 +1100 (EETDT) Received: from SpoolDir by EFS01 (Mercury 1.40); 23 Feb 100 19:44:58 GMT+1000 From: Katja Gerling To: "RATS Discussion List" Subject: dynamic fixed effects model Date: Wed, 23 Feb 2000 09:42:18 +0100 Errors-to: Reply-to: "RATS Discussion List" Sender: Maiser@efs01.efs.mq.edu.au X-listname: X-Mailer: Mozilla 4.6 [en] (Win98; I) (via Mercury MTS (Bindery) v1.40) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Hi! I am currently estimating a dynamic model with panel data and I want to implement fixed individual effects. Now I'm wondering whether to do this via defining a constant (dummy) for each cross section of my panel or by using the panel instruction in RATS which subtracts the mean from each time series. Both ways yield rather different results (which is not the case for static models). Can anybody give me an advice? Thanks, Katja From ???@??? Wed Feb 23 20:45:37 2000 Received: from localhost (localhost [127.0.0.1]) by amethyst.efs.mq.edu.au (8.9.1/8.9.1) with ESMTP id VAA08342 for ; Wed, 23 Feb 2000 21:05:04 +1100 Message-Id: <200002231005.VAA08342@amethyst.efs.mq.edu.au> Received: from efs01.efs.mq.edu.au by localhost with POP3 (fetchmail-5.0.0) for robt@localhost (single-drop); Wed, 23 Feb 2000 21:05:04 +1100 (EETDT) Received: from SpoolDir by EFS01 (Mercury 1.40); 23 Feb 100 21:02:51 GMT+1000 From: Price SG To: "RATS Discussion List" Subject: Re: dynamic fixed effects model Date: Wed, 23 Feb 2000 10:02:59 +0000 (GMT) Errors-to: Reply-to: "RATS Discussion List" Sender: Maiser@efs01.efs.mq.edu.au X-listname: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Mailer: Mercury MTS (Bindery) v1.40 > I am currently estimating a dynamic model with panel data and I want to > implement fixed individual effects. Now I'm wondering whether to do this > via defining a constant (dummy) for each cross section of my panel or by > using the panel instruction in RATS which subtracts the mean from each > time series. Both ways yield rather different results (which is not the > case for static models). Can anybody give me an advice? Assuming this is a panel with T approx equal to N ... Before you do ANYTHING with a dynamic panel read Pesaran and Smith Journal of Econometrics vol 68 pp 79-113, and also Pesaran Shin and Smith Pooled mean group estimation of dynamic heterogeneous panels Forthcoming JASA (may be out by now) and available from Pesaran's website. The issue is that bias is a serious problem if the underlying parameters are heterogeneous. Luckily, there are solutions. Assuming this is a panel with T small N large, there are different issues which are well documented in stndard texts, eg Baltagi. ******************************************************************* Prof Simon Price email: s.g.price@city.ac.uk Department of Economics City University Tel (work): +44 (0)171 477 8000 ext 4503 Northampton Square Fax (work): +44 (0)171 477 8580 London EC1V 0HB UK URL http://www.city.ac.uk/~sm344 ******************************************************************* From ???@??? Mon Feb 28 21:40:41 2000 Received: from localhost (localhost [127.0.0.1]) by amethyst.efs.mq.edu.au (8.9.1/8.9.1) with ESMTP id EAA11862 for ; Mon, 28 Feb 2000 04:00:04 +1100 Message-Id: <200002271700.EAA11862@amethyst.efs.mq.edu.au> Received: from efs01.efs.mq.edu.au by localhost with POP3 (fetchmail-5.0.0) for robt@localhost (single-drop); Mon, 28 Feb 2000 04:00:04 +1100 (EETDT) Received: from SpoolDir by EFS01 (Mercury 1.40); 28 Feb 100 03:45:20 GMT+1000 From: Reto.Casserini@student.unisg.ch To: "RATS Discussion List" Subject: Generating ARFIMA(p,d,q)-series Date: Sun, 27 Feb 2000 17:44:35 +0100 Errors-to: Reply-to: "RATS Discussion List" Sender: Maiser@efs01.efs.mq.edu.au X-listname: Mime-Version: 1.0 Content-type: text/plain; charset=us-ascii X-Mailer: Mercury MTS (Bindery) v1.40 Dear RATS-Users I found a source-file on the estima-site (arfsim.src) for generating ARFIMA(0,d,0)-series. Has anyone written a procedure for generating general ARFIMA(p,d,q)-series? Reto Casserini Institute for Financial Analysis http://www.stud.unisg.ch/~rcasserini/intro.htm From ???@??? Tue Feb 29 09:00:30 2000 Received: from localhost (localhost [127.0.0.1]) by amethyst.efs.mq.edu.au (8.9.1/8.9.1) with ESMTP id XAA14654 for ; Mon, 28 Feb 2000 23:30:04 +1100 Message-Id: <200002281230.XAA14654@amethyst.efs.mq.edu.au> Received: from efs01.efs.mq.edu.au by localhost with POP3 (fetchmail-5.0.0) for robt@localhost (single-drop); Mon, 28 Feb 2000 23:30:04 +1100 (EETDT) Received: from SpoolDir by EFS01 (Mercury 1.40); 28 Feb 100 23:29:48 GMT+1000 From: Christopher F Baum To: "RATS Discussion List" Subject: Re: Generating ARFIMA(p,d,q)-series Date: Mon, 28 Feb 2000 07:29:00 -0500 Errors-to: Reply-to: "RATS Discussion List" Sender: Maiser@efs01.efs.mq.edu.au X-listname: X-Mailer: Mulberry (MacOS) [1.4.5, s/n P020-300786-009] (via Mercury MTS (Bindery) v1.40) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit I do not know of any general routine for this purpose, since depending on the degree of the MA polynomial the generation of such series is difficult. But for the general AR polynomial and a MA(1) form, RATS procedures are available in the SSC-IDEAS archive at http://ideas.uqam.ca/ideas/data/Softwares/bocbocodeR022701.html RATS routines of mine for Geweke/Porter-Hudak estimation (in two variants) and Robinson semiparametric estimation can also be found in that archive; use 'search' 'among software components'. Kit Baum Boston College Economics --On Sun, Feb 27, 2000 17:44 +0100 Reto.Casserini@student.unisg.ch wrote: > Dear RATS-Users > > I found a source-file on the estima-site (arfsim.src) for generating > ARFIMA(0,d,0)-series. Has anyone written a procedure for > generating general ARFIMA(p,d,q)-series? > > Reto Casserini > Institute for Financial Analysis > http://www.stud.unisg.ch/~rcasserini/intro.htm > >