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;
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
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.