Dear All,
I am unablle to get attached graph by using prog gplot procedure. Anyone could help me to produce attached graph.
Thank You!
VR96.
Hi,
First off, don't attach Office files, most users will not download them as they are a security risk. Post an image of the graph in the post itself. Secondly its really advisable to start using Sgplot and Graph Template Language as they are far more flexible and modern. Also note this is not a do all your work for you website, so show what you have managed to do and what questions you have on it.
Now this blog here is the best place to look for any graph question, it provides clear examples for any graph you could possibly imagine, so I would start looking there:
Here are a couple of basic examples to get you started:
data temp;
do g = 1 to 2;
do x = 1 to 10;
y=ranuni(123);
z=ranuni(321);
output;
end;
end;
run;
proc sgplot data=temp;
series x=x y=y / markers markerattrs=(symbol=circlefilled)
group=g;
run;
proc sgplot data=temp (where=(g=1));
series x=x y=y / markers markerattrs=(symbol=circlefilled);
series x=x y=z / markers markerattrs=(symbol=circlefilled);
run;
Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9. Sign up by March 14 for just $795.
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.
Ready to level-up your skills? Choose your own adventure.