On Mon, 7 Sep 2009, Ofer Cornfeld wrote:
I'm working on version 1.8.4 of GRETL.
I've been trying to use programmatically corrgm on two series.
but this fails with
gretl version 1.8.4
Current session: 2009-09-07 19:54
? smpl --no-missing F_NFCB E_NFCB
? cgm = corrgm(F_NFCB,12,E_NFCB)
Missing values within sample -- can't do correlogram
What does the pattern of NAs look like for these two series?
I've now fixed a bug this area that might have tripped gretl
up for some patterns of NAs. The fix is in CVS and the Windows
snapshot.
A workaround that should help with the released gretl 1.8.4 is:
smpl --no-missing F_NFCB E_NFCB
store corrgm.gdt F_NFCB E_NFCB
open corrgm.gdt
cgm = corrgm(F_NFCB,12,E_NFCB)
Allin Cottrell