BookmarkSubscribeRSS Feed
WaltP
Calcite | Level 5

Hi,

I have a script that creates a number of intermediate data tables.  The final result of the script is a series of bubbles charts.  Unfortunately, between the beginning of the script and the displaying of the last bubble chart, all the intermediate tables are also displayed.  I don't want to see them -- just the bubble charts.  How can I hide the intermediate tables?  I tried using Invisible, but this seems to make a table literally invisible to all following uses of it so that errors occur -- the table is not there.  Any suggestions for hiding the display of a table?

Thanks,

Walt

1 REPLY 1
adamrauk
Calcite | Level 5

A possible solution is to create a report from the bubble chart and place it in a new window prior to closing the intermediate tables.  Below is an example using a simple distribution analysis.

m=j(10,1,randomnormal());

dt=astable(m);

dist=Distribution(

     Continuous Distribution( Column(1), Horizontal Layout( 1 ), Vertical( 0 ) )

);

newwindow("histogram",dist<<report);

close(dt,nosave);

SAS Innovate 2025: Call for Content

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 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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
  • 1 reply
  • 699 views
  • 0 likes
  • 2 in conversation