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-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!

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
  • 664 views
  • 0 likes
  • 3 in conversation