BookmarkSubscribeRSS Feed
Barkamih
Pyrite | Level 9
proc nlin data = new method = marquardt;
  parms A = 15 B = -0.19 C = 0.0012 ;
      by pr  ;
  model TEST_DAY_PROT_PERCENT = A * Time **b * exp(-C*Time);
  output out = Fit predicted = pred ;
  symbol1 interpol= join value = star color= black;
symbol2 interpol = none value = none color = red;
 run;
QUIT;
proc sort data=fit; by time;

proc gplot data=fit;
title1' Lactation curves of milk fat and milk protein % ';
	plot pred*time TEST_DAY_PROT_PERCENT*time/overlay;
run;quit;

Hi guys,,,

I just wanted to know how to plot two curves from the same dataset on the same graph. 

this code has to plot only one curve for prot_percent, I wanna to plot fat_percent on the same graph, and all the data on the same dataset. (may dataset name is fit).

 

best regards 

 

Ibrahim 

 

1 REPLY 1
ballardw
Super User

It may be time to use the newer SG graphics procedures. SGPLOT makes it fairly easy to create multiple plots as you request as long as the x axis use the same variable.

 

proc sgplot data=fit;
title1' Lactation curves of milk fat and milk protein % ';
   series y=pred x=time;
   series y=TEST_DAY_PROT_PERCENT x=time;
   series y=Fat_PERCENT x=time;
run;

Lots of appearance options related to markers and colors to control

 

Use SCATTER instead of SERIES if you want points instead of connected points.

sas-innovate-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 1 reply
  • 2976 views
  • 4 likes
  • 2 in conversation