How to force heatmap to show all rows/columns even when empty?
Is there a trick to making a heatmap show all rows even when a data filter eliminates some of them? Consider this plot created against "Big Class.jmp": Graph Builder(
Size( 673, 714 ),
Variables( X( :sex ), Y( :age ) ),
Elements( Heatmap( X, Y, Legend( 2 ) ) ),
Local Data Filter(
Add Filter( columns( :height ), Where( :height >= 65.137 & :height <= 70 ) )
)
)
If you look at this plot, you ...