PRINT problem
PRINT problem
I'm using Rats to forecast volatility, when I finished, i tried to print the forecast values, so i used print function, but rats said that " the second half of parameter is absent", anyone knows what does this sentence mean?
I also tried display function, but display cant show series. i think my codes are ok, i also tried " print rfor 1 500", buy why rats says "Tried to Use Series Number 500, Only 12 Are Available" Is it because my data are not correct? or it's my codes problem?
I also tried display function, but display cant show series. i think my codes are ok, i also tried " print rfor 1 500", buy why rats says "Tried to Use Series Number 500, Only 12 Are Available" Is it because my data are not correct? or it's my codes problem?
Re: [Urgent] about the print problem
It's
PRINT 1 500 RFOR
Instructions that can take an unlimited number of series (PRINT, COPY, TABLE, GARCH and a few others) have the range first.
PRINT 1 500 RFOR
Instructions that can take an unlimited number of series (PRINT, COPY, TABLE, GARCH and a few others) have the range first.
Re: [Urgent] about the print problem
Ahh! thank you very much Tom! I made a stupid mistakeTomDoan wrote:It's
PRINT 1 500 RFOR
Instructions that can take an unlimited number of series (PRINT, COPY, TABLE, GARCH and a few others) have the range first.
Re: [Urgent] about the print problem
TomDoan wrote:It's
PRINT 1 500 RFOR
Instructions that can take an unlimited number of series (PRINT, COPY, TABLE, GARCH and a few others) have the range first.
Hello, Tom, i got another problem,what is the default value of a linear regression model's coefficient, for example,
linreg(noprint) c i-499 i
#c{1}
do j = tau1,tau2
set ract j j = r(i+j)
set rfor j j = q(i)*(1-%beta(1)**j)+r(i)*(%beta(1)**j)
end do j
what does %beta(1) represent ? is beta(1) represents the coefficients series?
Re: [Urgent] about the print problem
%BETA(n) is the nth coefficient in the most recent estimation instruction. (LINREG, NLLS, MAXIMIZE, etc.).likykiki wrote: Hello, Tom, i got another problem,what is the default value of a linear regression model's coefficient, for example,
linreg(noprint) c i-499 i
#c{1}
do j = tau1,tau2
set ract j j = r(i+j)
set rfor j j = q(i)*(1-%beta(1)**j)+r(i)*(%beta(1)**j)
end do j
what does %beta(1) represent ? is beta(1) represents the coefficients series?