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

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 2 replies
  • 806 views
  • 0 likes
  • 3 in conversation