Currently I have my data as Day_of Inception (values 1-31) month (values 'Oct, Nov, Dec) NBcount (numbers from 0-100) business type ( a, b, c, d....)
I can get the graph I want for one business type using
proc gplot data = graphtable (where= (business_type=a));
plot totalNB*day_of_inception=month /hminor=0;
run;
Is there a way I can panel the graphs so that it produces individual graphs (each with three plots (one for each month)) for each business type?
If not I can create a macro loop to produce the plots but I then can't figure out how to change the titles to have the business type in them so that the graphs are labeled.
Thank you in advance,
See if this works for you:
proc sgpanel data = graphtable;
by business_type;
panelby month;
scatter y=totalNB x=day_of_inception;
run;
See if this works for you:
proc sgpanel data = graphtable;
by business_type;
panelby month;
scatter y=totalNB x=day_of_inception;
run;
by business_type; was exactly what I needed and it worked in the gplot. Thank you very much.
Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!
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.