cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Choose Language Hide Translation Bar
ChesterKnurek
Level II

Change color pattern of filtered data on heat map

Data is filtered.

Resulting plot of data creates pattern on heatmap that is not solid color but striped.

This pattern is too bold. Is there a way to change it or remove it?

 

ChesterKnurek_0-1668517975011.png

Thankyou.

1 ACCEPTED SOLUTION

Accepted Solutions
Jeff_Perkinson
Community Manager Community Manager

Re: Change color pattern of filtered data on heat map

The << Clear Select message to the data table will clear the selected rows.

 

Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
dt << Select Rows( [5, 7, 8, 10] );
Wait( 2 );
dt << Clear Select();

2022-11-15_08-30-26.334.png

-Jeff

View solution in original post

4 REPLIES 4

Re: Change color pattern of filtered data on heat map

Hi @ChesterKnurek 

 

It looks like the pattern that appears when you have rows selected. If you go back to your data table and clear out the rows that are selected (ESC key), the pattern should go away in your graph. If you then select specific zones on your heatmap by clicking on them, the pattern will return and the rows will be selected in your data table.

 

-Scott

-Scott
ChesterKnurek
Level II

Re: Change color pattern of filtered data on heat map

Thankyou.

 

Are you aware of a way to do that programmatically in JSL?

I have a large amount of plots that are generated and having to do this would slow things down.

 

-Chet

Jeff_Perkinson
Community Manager Community Manager

Re: Change color pattern of filtered data on heat map

The << Clear Select message to the data table will clear the selected rows.

 

Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
dt << Select Rows( [5, 7, 8, 10] );
Wait( 2 );
dt << Clear Select();

2022-11-15_08-30-26.334.png

-Jeff
hogi
Level XI

Re: Change color pattern of filtered data on heat map

If you want to use the selection feature but make the selection less visible, you could changing the style of how selected items apear in the heatmap:

hogi_0-1668539841772.png

dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
dt << Graph Builder( Show Control Panel( 0 ), Variables( X( :height ), Y( :weight ), Overlay( :sex ) ), Elements( Heatmap( X, Y, Legend( 3 ) ) ), SendToReport( Dispatch( {}, "Graph Builder", FrameBox, {Fill Selection Mode( "Selected Outlined" )} ) ) )