cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Sign-in to the JMP Community will be unavailable intermittently Dec. 6-7 due to a system update. Thank you for your understanding!
  • We’re retiring the File Exchange at the end of this year. The JMP Marketplace is now your destination for add-ins and extensions.
  • JMP 19 is here! Learn more about the new features.

Discussions

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

What determines the order of the platforms in a group-by analysis

I expected the value order of a column to define which value is shown first in analysis platforms when grouping by that column, but this does not seem to be the case (sex=F is always shown first in big class).

My question is twofold:

1. can I affect which is shown first?

2. If not, how do I know which comes first? It does not appear to be alphabetical

 

 

dt=Open("$SAMPLE_DATA\big class.jmp");
Distribution( Continuous Distribution( Column( :height ) ), By( :sex ) )

 

mvanderaa1_0-1669301522688.png

 

6 REPLIES 6
jthi
Super User

Re: What determines the order of the platforms in a group-by analysis

How come it doesn't seem to be alphabetical? Quickly tested by using with Big Class and using :name as by column and to me it seems like it is in alphabetical order

Names Default To Here(1);

dt = Open("$SAMPLE_DATA\Big Class.jmp");

dist = dt << Distribution(
	Continuous Distribution(Column(:height)), By(:name),
	Histograms Only
);


show((dist << Xpath("//OutlineBox[contains(text(), 'Distributions name=')]")) << get title);

 

-Jarmo
hogi
Level XIII

Re: What determines the order of the platforms in a group-by analysis

Next question would be:
how chan I change ...

pauldeen
Level VI

Re: What determines the order of the platforms in a group-by analysis

pauldeen_0-1669385877442.png

 

pauldeen_1-1669385886616.png

 

hogi
Level XIII

Re: What determines the order of the platforms in a group-by analysis

I could bet that yesterday it didn't work ;)

pauldeen
Level VI

Re: What determines the order of the platforms in a group-by analysis

But today it does? This was on JMP 17 but I think this has been working for a while.

hogi
Level XIII

Re: What determines the order of the platforms in a group-by analysis

Yes, works with jmp 16 and 17.
hm ..."yesterday". I don't know ...

Recommended Articles