BookmarkSubscribeRSS Feed
graingerad12
Calcite | Level 5

Hello! I was just wondering if someone could please help me with a problem. I am trying to use OLS to estimate a linear hedonic wage equation with wages as a function of gender, race, age, age^2, and fatality risks. 

 

the variables are defined as:

 

wage = worker's hourly wage rate

male = 1 if worker is male and =0 otherwise

white = 1 if worker's race is white = 0 otherwise

age = workers age in years

fatrate = worker's risk of fatality measured in terms of deaths per 100,000 workers. 

 

how would the code even look like? Do i need to create a matrix, and if so, how? 

thank you!

4 REPLIES 4
Reeza
Super User

Look at proc REG or GLM. 

 

The documentation has good examples. 

 

You do not need to create a matrix, a SAS dataset is enough to get started. 

 

http://www.ats.ucla.edu/stat/sas/webbooks/reg/chapter1/sasreg1.htm

pearsoninst
Pyrite | Level 9
I see there are Binary Variables and OLS mainly used in LR model (as per i know ) You can check Logistic regression i you wish to ..
PGStats
Opal | Level 21

Hedonic function depends on fatrate... Hmmm

PG
Reeza
Super User

Since dependent variable is continuous you can use regression.

 

proc reg data=have;

model wage = male white age fatrate;

run;quit;
How to Concatenate Values

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.

SAS Training: Just a Click Away

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

Browse our catalog!

Discussion stats
  • 4 replies
  • 2772 views
  • 0 likes
  • 4 in conversation