BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Linlin
Lapis Lazuli | Level 10

Dear All,

Can I put three regression lines(age vs weight) on the same plot(based on dataset class)?

One line is for a regression line with gender=0, another with gender=1, another with gender=2?

data class1;

  set sashelp.class;

  gender=0;

data class2;

  set sashelp.class;

   if sex='M' then gender=1;

     else gender=2;

data class;

   set class1 class2;

proc sort data=class;

  by gender age;

run;

Thank you very much!

1 ACCEPTED SOLUTION

Accepted Solutions
PGStats
Opal | Level 21

Sorry, I should have read more carefully...

proc sgplot data=class;

reg y=weight x=age / group=gender clm clmtransparency=0.4 lineattrs=(pattern=solid);

run;

PG

PG

View solution in original post

6 REPLIES 6
VD
Calcite | Level 5 VD
Calcite | Level 5

symbol1 value=none i=r ci=black;
symbol2 value=none i=r ci=blue;
symbol3 value=none i=r ci=green;

PROC GPLOT DATA=class;
PLOT Age *Weight=Gender/
;

RUN;  QUIT;

Linlin
Lapis Lazuli | Level 10

Thank you VD!

I found the "regeqn" option.

PGStats
Opal | Level 21

Or :

proc sgplot data=class;

series y=weight x=age / group=gender;

run;

PG

PG
Linlin
Lapis Lazuli | Level 10

Thank you PG!  I am not familiar with SAS graphs.  I need the regression line.

I found an example on line:

title1

  ’Linear Regression of Height and Weight’;

title2 ’(with 95% Confidence Limits)’;

symbol ci=red cv=blue co=gray value=dot

       interpol=rlclm95 ;

proc gplot data=sashelp.class;

   plot height*weight / regeqn;

run; quit;

PGStats
Opal | Level 21

Sorry, I should have read more carefully...

proc sgplot data=class;

reg y=weight x=age / group=gender clm clmtransparency=0.4 lineattrs=(pattern=solid);

run;

PG

PG
Linlin
Lapis Lazuli | Level 10

Thank you PG!!Smiley Happy  Linlin

sas-innovate-2024.png

Join us for SAS Innovate April 16-19 at the Aria in Las Vegas. Bring the team and save big with our group pricing for a limited time only.

Pre-conference courses and tutorials are filling up fast and are always a sellout. Register today to reserve your seat.

 

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
  • 6 replies
  • 10894 views
  • 3 likes
  • 3 in conversation