Page 1 of 1

Interpolation

Posted: Tue Jul 20, 2010 3:57 am
by javiersan
Hi,

Say I have a series like:

series cc=a/b

there are gaps in cc and I want to fill them through linear interpolation so I do

cc.ipolate f

now f has the full series but it has lost the "remarks" for cc which were "a/b" and has now "cc.ipolate f". Is there a way of keeping the history of the transformations to the cc series?

If I do

cc.ipolate cc

Eviews does not like it.

Any suggestions?

Thanks,

Javier

Re: Interpolation

Posted: Tue Jul 20, 2010 5:34 am
by fmgoto
Why dont you work with different series? Try calling them "cc_1"!

Re: Interpolation

Posted: Tue Jul 20, 2010 6:24 am
by javiersan
Because I want to keep the history of the transformations of the series.

Regards,

Javier

Re: Interpolation

Posted: Tue Jul 20, 2010 6:59 am
by EViews Gareth
Do the interpolation into a new series, then copy the remarks across by setting the new series\' remarks equal to the old one\'s. I\'m on my phone, so can\'t check the exact syntax, but something along the lines of:

Code: Select all

%desc = cc.@description f.label(d) {%desc}

Re: Interpolation

Posted: Tue Jul 20, 2010 8:17 am
by javiersan
Thanks Gareth.