BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
gauravp1993
Obsidian | Level 7

Hello,

I am trying to create custom tooltip (other than used in imagemap=ON) using GTL .is it possible to show tool tip data using categories other than used in boxplot. 

Following is the code i am trying with:

 

ods graphics on/ border=off width = 1300PX HEIGHT = 650PX imagemap=on;

proc template;
define statgraph boxplot;
begingraph;
entrytitle "Boxplot";
layout overlay;
boxplot y=mnval x=Variant/spread=true ;
referenceline y=&bin_lsl/curvelabel="LSL=&bin_lsl" ;
referenceline y=&bin_usl/curvelabel="USL=&bin_usl";

endlayout;
endgraph;
end;

proc sgrender data=xyz template=boxplot;
where Plant="&Plant" and 'Shorttext'n = "&test_param"
;
label Variant="RM variant";
run;

1 ACCEPTED SOLUTION

Accepted Solutions
BrunoMueller
SAS Super FREQ

Hi

 

Have a look at the sample mentioned with BOXPLOTPARM statement, looks like it does what you need.

 

Bruno

View solution in original post

4 REPLIES 4
BrunoMueller
SAS Super FREQ

Hi

 

Have a look at the sample mentioned with BOXPLOTPARM statement, looks like it does what you need.

 

Bruno

gauravp1993
Obsidian | Level 7

thank you for suggesting this method 🙂

but do we have to provide calculated stats like mean median to y axis while defining stat= option?

it is showing ths error for me:

The boxplotparm statement will not be drawn because one or more of the required arguments were not supplied.

I replaced boxplot with boxplotparm , added stat=stat and orient=vertical in above code.

BrunoMueller
SAS Super FREQ

Hi

 

Have a look at the doc for the BOXPLOTPARM, it states:

 

Requirements: The input data must be precomputed. See Input Data Requirements for the BOXPLOTPARM Statement.

 

So BOXPLOT and BOXPLOTPARM are not interchangeable.

 

Bruno

BrunoMueller
SAS Super FREQ

Hi

 

Please also have a look at this recent Graphically Speaking blog entry http://blogs.sas.com/content/graphicallyspeaking/2016/07/25/unbox-your-box-plots-part-deux/ by @PrashantH_sas

 

Bruno

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 4 replies
  • 2402 views
  • 1 like
  • 2 in conversation