BookmarkSubscribeRSS Feed
namrata
Fluorite | Level 6

I need to regress the monthly returns of each firm(180 obs for each firm) on the returns of a particular commodity for that period(180 observations).

I have the data ready: one sheet containing returns of several companies and the commodity returns on the other hand.

While regressing in SAS, do I paste the returns of the commodity against each firm manually on the worksheet or is there some code in SAS that can directly regress each firm's returns on the commodity returns?

Right now,the data sheet looks like:

date     firm       firmret     commodityret

1          a          10               100

2          a          11               200

3          a          12               300

1          b          16              

2          b          17              

3          b          18              

1          c          10

2          c          8

3         .c          11

I need to regress firms' a,b,c....returns on commodityret.So,do i paste commodity returns  for each firm on the commodity ret column?

If anybody can suggest the solution for Stata too,it is fine.        

1 REPLY 1
PGStats
Opal | Level 21

Assemble the data properly in a new table and call proc reg, BY firm. You'll get a separate regression for each firm :

data have;
infile datalines  missover;
input date     firm $      firmret     commodityret;
datalines;
1          a          10               100
2          a          11               200
3          a          12               300
1          b          16              
2          b          17              
3          b          18              
1          c          10
2          c          8
3          c          11
;

proc sql;
create table want as
select a.date, a.firm, a.firmret, b.commodityret
from have as a inner join have as b on a.date=b.date
where b.commodityret is not missing
order by a.firm, a.date;

quit;

proc reg data=want;
by firm;
model firmret = commodityret;
run;

PG

PG

sas-innovate-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

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 lock in 2025 pricing—just $495!

Register now

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 1 reply
  • 982 views
  • 0 likes
  • 2 in conversation