Hi All,
I am trying to create 4 graphs(1 graph per each variable) per page and 5-8 graphs going to next page..etc.
Could you let me know hoe to proceed.
Thanks,
Gopal
Hi.
There are various ways you can accomplish this. It depends on what version of SAS you use.
If you have SAS 9.2 or higher, you could use PROC TEMPLATE with PROC SGRENDER to accomplish the plots.
You could use the older graphic PROCs (PROC GPLOT, PROC Boxplot...PROC GCHART) in combination with PROC GREPLAY to get several plots in one panel....
So, more detail of what you need would be awesome.
Some sample data, and we can help!
Good luck,
Anca.
You might also get away with something like:
ods graphics / noborder width=6in height=6in;
proc sgscatter data=myData;
plot (v1--v4)*time / columns=2;
run;
proc sgscatter data=myData;
plot (v5--v8)*time / columns=2;
run;
...
As Anca said, example data will get you more precise help.
PG
Registration is open! SAS is returning to Vegas for an AI and analytics experience like no other! Whether you're an executive, manager, end user or SAS partner, SAS Innovate is designed for everyone on your team. Register for just $495 by 12/31/2023.
If you are interested in speaking, there is still time to submit a session idea. More details are posted on the website.
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.