cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
The Discovery Summit 2025 Call for Content is open! Submit an abstract today to present at our premier analytics conference.
See how to use JMP Live to centralize and share reports within groups. Webinar with Q&A April 4, 2pm ET.
Choose Language Hide Translation Bar
View Original Published Thread

Fixed marker for a specific entry?

hogi
Level XII

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 XII


Re: Fixed marker for a specific entry?

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