キャンセル
次の結果を表示 
表示  限定  | 次の代わりに検索 
もしかして: 
  • JMP will suspend normal business operations for our Winter Holiday beginning on Wednesday, Dec. 24, 2025, at 5:00 p.m. ET (2:00 p.m. ET for JMP Accounts Receivable).
    Regular business hours will resume at 9:00 a.m. EST on Friday, Jan. 2, 2026.
  • We’re retiring the File Exchange at the end of this year. The JMP Marketplace is now your destination for add-ins and extensions.

JMP Wish List

We want to hear your ideas for improving JMP. Share them here.
言語を選択 翻訳バーを非表示
0 件の賞賛

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

 

 

詳細を表示...
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件のコメント
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 XIII

you are right, wonderful!

hogi
Level XIII

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

 

変更されたステータス: Delivered

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