- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Heatmap - statistics options
Hi,
I found that heatmap set color from light to dark based on the count by default.
When I drag a continuous variable into the box "color" and it shows me the mean also by color. It's pretty cool!
If I want the heatmap shows me the sum or other statistics, do I have the option? If so, how I can do it and thanks.
Canh
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Heatmap - statistics options
You can right click on the color dropzone and go to Summary Statistics.
Sum is available - like many other variants:
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Heatmap - statistics options
Hello @CanhKhong ,
After enabling a caption box in your graph, pointed to by the red arrow, you can use the options in the control panel to add more metrics. For each statistic you want an additional "Summary Statistic" dropdown selection boxes will appear after you select a statistic in the dropdowns available.
Here's an example:
Names default to here(1);
dt = open( "SAMPLE_DATA/Big Class.jmp" );
dt << Graph Builder(
Size( 559, 491 ),
Fit to Window,
Set α Level( 0.05 ),
Variables( X( :height ), Y( :weight ), Overlay( :sex ) ),
Elements(
Heatmap( X, Y, Legend( 5 ) ),
Caption Box(
X,
Y,
Legend( 6 ),
Summary Statistic( "Mean" ),
Summary Statistic 2( "Median" )
)
)
)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Heatmap - statistics options
You can right click on the color dropzone and go to Summary Statistics.
Sum is available - like many other variants:
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Heatmap - statistics options
Hello @CanhKhong ,
After enabling a caption box in your graph, pointed to by the red arrow, you can use the options in the control panel to add more metrics. For each statistic you want an additional "Summary Statistic" dropdown selection boxes will appear after you select a statistic in the dropdowns available.
Here's an example:
Names default to here(1);
dt = open( "SAMPLE_DATA/Big Class.jmp" );
dt << Graph Builder(
Size( 559, 491 ),
Fit to Window,
Set α Level( 0.05 ),
Variables( X( :height ), Y( :weight ), Overlay( :sex ) ),
Elements(
Heatmap( X, Y, Legend( 5 ) ),
Caption Box(
X,
Y,
Legend( 6 ),
Summary Statistic( "Mean" ),
Summary Statistic 2( "Median" )
)
)
)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Heatmap - statistics options
Thank you!