BookmarkSubscribeRSS Feed
venu166
Calcite | Level 5

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

2 REPLIES 2
AncaTilea
Pyrite | Level 9

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!

Smiley Happy

Good luck,

Anca.

PGStats
Opal | Level 21

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

PG

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

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
  • 2 replies
  • 993 views
  • 0 likes
  • 3 in conversation