I'm composing a program which makes a number of forecasts. At the beginning of the program, data is read from an Excel file. The data is in its original form, and further transformations are needed before the forecasts are made.
What I want is essentially that some of the series are transformed, but his, however, returns NAs as long as I perform it on the series themselves! For example, you may run the following program.
Code: Select all
wfcreate q 1990q1 2009q4
genr y=nrnd
series x=d(y)
y=d(y)Code: Select all
wfcreate q 1990q1 2009q4
genr y=nrnd
rename y y2
y=d(y2)
d y2