Search found 7 matches
- Mon Nov 27, 2006 12:37 pm
- Forum: General Econometrics
- Topic: PCA
- Replies: 6
- Views: 18472
Without knowing the paper, I can't give you a definitive answer. However, if you multiply each eigenvector by the square root of its respective eigenvalue, that 'weights' each eigenvector by its importance in explaining the system. Perhaps that is what the paper refers to. For example, if you are us...
- Wed Nov 15, 2006 8:51 am
- Forum: RATS Procedures
- Topic: VRATIO89 beta (Lo and MacKinlay 1989) - Comments welcome
- Replies: 1
- Views: 11202
VRATIO89 beta (Lo and MacKinlay 1989) - Comments welcome
My debugging helpers are all in lower case. I would propose to delete them in the final version. Any comments, questions, or suggestions for improvement are welcome. ****************************************************************************** * * @VRATIO89(OPTIONS) SERIES START END * * Parameters:...
- Tue Nov 14, 2006 11:19 am
- Forum: Help With Programming
- Topic: Problems with EWISE statement
- Replies: 2
- Views: 12068
- Tue Nov 14, 2006 11:16 am
- Forum: Other Time Series Analysis
- Topic: Minor Bug in ADF Procedure
- Replies: 2
- Views: 11178
Thanks for the pointer, Tom. I really should use your menus to find things. Bad habit. I found the old proc at www.estima.com/procs/adf.src through the website's Search feature.
- Tue Nov 14, 2006 9:13 am
- Forum: Help With Programming
- Topic: Problem with LOCAL series
- Replies: 0
- Views: 9799
Problem with LOCAL series
In a procedure, I'm defining a LOCAL series of k differences. When I call the procedure with 1 lag, say, the first entry is NA, and the rest of the series is the 1 period difference. When I call the procedure a second time (in a do loop) with 2 lags and print the series again, the first entry is NA,...
- Tue Nov 14, 2006 9:07 am
- Forum: Help With Programming
- Topic: Problems with EWISE statement
- Replies: 2
- Views: 12068
Problems with EWISE statement
I'm using an EWISE statement in a procedure and it's not working properly. I'm wondering if anyone has any suggestions. EWISE AUX1(I) = (2/LAGS * (LAGS-I)) ** 2 AUX1 is a local real vector, dim LAGS-1. When LAGS=2, then AUX1 has just one element, 1. That works fine. If I set LAGS to anything else, l...
- Tue Nov 14, 2006 8:51 am
- Forum: Other Time Series Analysis
- Topic: Minor Bug in ADF Procedure
- Replies: 2
- Views: 11178
Minor Bug in ADF Procedure
Not sure if this is the right forum, but I'll post it here anyway. On line 140 of the ADF procedure, the SMPL statement within the SELECTUNI subprocedure SMPL maxlag nobs will cause problems if series does not begin with entry 1. The line should read SMPL startl+maxlag-1 startl+nobs-1 This should fi...