Hi there,
I want to insert multiple graph file into a single HTML file.
I am using GTL(proc template and SGRENDER procedure) to generate graphs.
How can I do this with PROC GREPLAY or Is there any other way?
Thanks in Advance.
Surendar.
Hi,
You don't need GREPLAY, that is for traditional SAS/GRAPH, not ODS Graphics.
Are you coding the "ODS sandwich yourself" ? Then would think this would work by without doing anything special, i.e.:
ods html file= ... ;
proc sgrender ...;
proc sgrender ....
*etc;
ods html close;
With ods html the image(s) aren't actually in the html file, but the html file references the image(s). If you have SAS 9.4 you can use ods HTML5, and actually embed the images in the html:
Hi,
Thanks, but I have only 9.3 version of SAS. So how could I do?
Is ssomething like this what you are trying to do?
THe images aren't actually in the file, but it's one html file and when you view it you will see both images.
ods html file="d:\junk\mygraphs.html" gpath="d:\junk"; proc sgplot data=sashelp.class; hbox age/group=sex; run; proc sgplot data=sashelp.class; hbox height/group=sex; run; ods html close;
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
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.