Hello there,
Can anybody suggest me a skeleton structure for how to create 4-6 charts in one single html page using GPLOT and ODS HTML.
I have found a number of ways to do that in PDF, but none fore HTML. I would really appreciate if somebody can share their knowledge in this issue.
Thanks,
Niran
To get things into a single "document" has the same general approach: The output generating steps are enclosed in an ODS sandwich:
ODS HTML Path="d:\output" body="specific name.html"; /*path is any valid output path. I suggest it be a fully qualified path */
Proc Gchart;
...
Proc Tabulate;
...
<other output>
Ods html close;
The fun part is that you will have to re-open HTML for general output after closing.
Thank you Ballard, I will have to work more on the proc tabulate area.
For an example and discussion, see the article "Using the ODS statement to add layers in your ODS sandwich."
Thank you Rick for sharing the link. It was a helpful one.
Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 16. Read more here about why you should contribute and what is in it for you!
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.