BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
MarinaMag
Fluorite | Level 6

Hello,

 

I want to run a simple OLS regression and include fixed effects eg. for country or firm fixed effects.

Is there a way to do this automatically? 

 

Thank you in advance,

1 ACCEPTED SOLUTION

Accepted Solutions
PaigeMiller
Diamond | Level 26

@MarinaMag wrote:

Hello,

 

I want to run a simple OLS regression and include fixed effects eg. for country or firm fixed effects.

Is there a way to do this automatically? 

 

Thank you in advance,


If you need to include "country" or "firm" in the model, these are categorical variables and PROC REG does not directly handle categorical variables. You could use PROC GLM which will do regression and does allow you to include categorical variables (by using the CLASS statement).

--
Paige Miller

View solution in original post

4 REPLIES 4
Ksharp
Super User

proc reg .......

model y=x..... /include=  ;

quit;

MarinaMag
Fluorite | Level 6

Thank you for your response.

I tried to use it for country fixed effects and I took this message:

"ERROR 22-322: Expecting an integer constant."

PaigeMiller
Diamond | Level 26

@MarinaMag wrote:

Hello,

 

I want to run a simple OLS regression and include fixed effects eg. for country or firm fixed effects.

Is there a way to do this automatically? 

 

Thank you in advance,


If you need to include "country" or "firm" in the model, these are categorical variables and PROC REG does not directly handle categorical variables. You could use PROC GLM which will do regression and does allow you to include categorical variables (by using the CLASS statement).

--
Paige Miller
MarinaMag
Fluorite | Level 6

Thank you, it works!

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

What is ANOVA?

ANOVA, or Analysis Of Variance, is used to compare the averages or means of two or more populations to better understand how they differ. Watch this tutorial for more.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 4 replies
  • 1568 views
  • 3 likes
  • 3 in conversation