cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
JMP Wish List

We want to hear your ideas for improving JMP software.

  1. Search: Please search for an existing idea first before submitting a new idea.
  2. Submit: Post your new idea using the Suggest an Idea button. Please submit one actionable idea per post rather than a single post with multiple ideas.
  3. Kudo & Comment Kudo ideas you like, and comment to add to an idea.
  4. Subscribe: Follow the status of ideas you like. Refer to status definitions to understand where an idea is in its lifecycle. (You are automatically subscribed to ideas you've submitted or commented on.)

We consider several factors when looking for what ideas to add to JMP. This includes what will have the greatest benefit to our customers based on scope, needs and current resources. Product ideas help us decide what features to work on next. Additionally, we often look to ideas for inspiration on how to add value to developments already in our pipeline or enhancements to new or existing features.

Choose Language Hide Translation Bar
0 Kudos

Heat maps -> median aggregation [and more]

HeatMap in Graph builder is a great way to visualize data:

https://community.jmp.com/t5/Learning-Center/Creating-Heat-Maps/ta-p/271828

hogi_2-1667399031694.png

 

Individual "tiles" can represent several rows of the data table (geographic region: data of many countries).
Then the values of the rows are averaged automatically. This is very convenient

 

- but "averaging" (mean) is just one option ...

If the user wants to do different aggregations, he has to generate a summary table or use a formula column with exactly the same grouping settings as the desired heat map:

https://community.jmp.com/t5/Discussions/Heat-Map-Aggregate-Function/td-p/269522

 

A more straight-forward and flexible approach:

In GraphBuilder/Heat Map, please provide a menu to select the aggregation method:

- median

- any item from the summary table menu:

hogi_1-1667397910692.png

 

 

View more...
dt =Open( "$SAMPLE_DATA/Big Class.jmp" );
dt:height[32]=500;


Data Table( "Big Class" ) << Graph Builder(
	Size( 336, 478 ),
	Graph Spacing( 4 ),
	Variables( X( :sex ), Y( :age ), Color( :height ) ),
	Elements( Heatmap( X, Y, Legend( 4 ) ) )
);
4 Comments
jthi
Super User

Can't user already do this by using Color property and by changing summary statistic in that? If no color column is defined heatmap will use Count (that is really only thing it can use without "third axis"?).

jthi_0-1667400461515.png

 

hogi
Level XI

you are right, wonderful!

hogi
Level XI

btw.
the summary statistic menu is always available, not just for heatmap plots.

But it seems to have just an effect for heatmaps, right?

hogi_0-1667408175301.png

 

Status changed to: Delivered

Marking as delivered since a solution is provided in the comments. Thanks all!