BookmarkSubscribeRSS Feed
SASER
Fluorite | Level 6

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

4 REPLIES 4
ballardw
Super User

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.

 

SASER
Fluorite | Level 6

Thank you Ballard, I will have to work more on the proc tabulate area.

SASER
Fluorite | Level 6

Thank you Rick for sharing the link. It was a helpful one.

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