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" )
)
)
)
Learning every day!