cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Instantly extract effect sizes, F-ratios, and FDR-adjusted p-values from your models with the Calculate Effects Sizes extension, available now in the JMP Marketplace!
  • New to JMP? Join us Sept. 23-24 for the Early User Edition of Discovery Summit, tailor-made for new users. Register now for free!
  • See how to use the JMP Marketplace – Free tools to expand JMP capabilities. Register. July 10, 2 pm US Eastern Time.

JMP Wish List

We want to hear your ideas for improving JMP. Share them here.
Choose Language Hide Translation Bar
0 Kudos

Graph builder symbols and colors

I wish different lines on a x-y plot in Graph builder would appear with different symbols in addition to different colors, by default.  The reason by default is important is because, as someone who is slightly (very?) color blind, I find it difficult to differentiate between the different overlay categories simply based on color.  Often I'll manually change symbols in the dataset one by one in order to see the differences.

2 Comments
Ryan_Gilmore
Community Manager
Status changed to: Archived
We are archiving this request. If this is still important please comment with additional details and we will reopen. Thank you!
hogi
Level XIII

You could use the same column as Overlay AND Color, then Jmp splits by symbol AND Color:

hogi_0-1687122560958.png

 

 

 

dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
dt << Graph Builder(
	Variables( X( :height ), Y( :weight ), Overlay( :sex ), Color( :sex ) ),
	Elements( Points( X, Y, Legend( 1 ) ), Smoother( X, Y, Legend( 4 ) ) )
)