hi i am estimating regressions for stock prices on monthly basis, i want to creat a timeseries variable of R² from each regression , How to do it????
Like this :
proc reg data=have outest=want;
by myStock myWhatever;
model myPrice = myXvariable / rsquare;
run;
proc print data=want;
var myStock myWhatever _RSQ_;
run;
PG
Like this :
proc reg data=have outest=want;
by myStock myWhatever;
model myPrice = myXvariable / rsquare;
run;
proc print data=want;
var myStock myWhatever _RSQ_;
run;
PG
If I get it right, what you want is something like (untested) :
proc sql;
create table myWstd as
select stock, intck("WEEK", '01JAN2000'd, myDate) as weekNo, std(price) as priceStd
from myData
group by stock, calculated weekNo;
and then regress priceStd on weekNo, by stock.
PG
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and save with the early bird rate—just $795!
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.