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!
  • Use World Cup data to build models, explore spatial relationships, and create informative visualizations in JMP. Register. July 17, 2 pm US Eastern Time.

Discussions

Solve problems, and share tips and tricks with other JMP users.
Choose Language Hide Translation Bar
hogi
Level XIII

Fixed marker for a specific entry?

Some while ago I posted a wish
new Column Property: Value Markers 
with the idea: add a Column property Value Marker to define markers for specific column values.
Unfortunately, is not planned to implement such a functionality in Jmp 18.

 

With the current limitations of Jmp - what is the easiest way to plot a specific class of data points with a defined marker?

I mean: automatically - without the need to specify the marker again and again via the plot legend.

 

I know that I can select all female entries and define "open triangle" via the row states.

But my actual data set is not static like Big Class. So, that's no option.

Hm, does anybody have a cool trick ?

 

hogi_0-1681832478824.png

1 ACCEPTED SOLUTION

Accepted Solutions

Re: Fixed marker for a specific entry?

You can select Rows > Color or Mark by Column... whenever the data changes to re-assign the markers as desired. Otherwise, you can write a utility script and add it to the Rows menu or make an Add-in to change the Marker row state after each data update.

 

For Each Row(
	Row State() = If( :sex == "F", Marker State( 5 ), Marker State( 1 ) );
);

View solution in original post

2 REPLIES 2

Re: Fixed marker for a specific entry?

You can select Rows > Color or Mark by Column... whenever the data changes to re-assign the markers as desired. Otherwise, you can write a utility script and add it to the Rows menu or make an Add-in to change the Marker row state after each data update.

 

For Each Row(
	Row State() = If( :sex == "F", Marker State( 5 ), Marker State( 1 ) );
);
hogi
Level XIII

Re: Fixed marker for a specific entry?

And if all corresponding rows have the same marker state, the legend will adjust accordingly - brilliant!

Recommended Articles