BookmarkSubscribeRSS Feed
aespinarey
Obsidian | Level 7

Hello,

 

I am having trouble finding a way to obtain the least squares line of PIC (Y) on YNG (X) separately for a dichotomous variable. 

Latin America: Y= B1 +B2X

Africa: Y= B1 + B2X

sas question.PNG

 

 

This is the code I am using, but I doubt I am getting the right results:

data q2;
set work.ch12q02;
run; proc print;run;

proc glm data=q2;
class COUNTRY;
model PCI=YNG COUNTRY / solution;
lsmeans COUNTRY;
run; proc print; run;

 

Output:sas ques.PNG

 Please help,

 

Thank you!

 

 

2 REPLIES 2
pau13rown
Lapis Lazuli | Level 10

interaction, so you have separate slopes for each country:

 

proc glm data=q2;
class COUNTRY;
model PCI=country YNG*COUNTRY / solution;
lsmeans COUNTRY;
run;

 

or use a where statement to subset:

 

proc glm data=q2 (where=(country="XXXX"));
model PCI=YNG/ solution;

lsmeans YNG;
run;

PGStats
Opal | Level 21

The intercept and slope estimates will be given directly by:

 

/* Common error variance */

proc glm data=ch12q02;
class country;
model pci = country country*yng / noint solution;
run;

/* or, separate error variance for each country */

proc glm data=ch12q02;
by country notsorted;
model pci = yng / solution;
run;
PG

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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
  • 2 replies
  • 1249 views
  • 0 likes
  • 3 in conversation