cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • 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.
  • Your voice matters! Tell us how you prefer to receive JMP updates, so we can tailor our communication to your needs. Take short survey.

Discussions

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

Sorting the level after analysis

I analyzed the data in a split-plot design and in the post-hoc test (LSMeans Differences Student's t) the levels by default were arranged according to the least Sq mean. I tried to sort them based on levels and for individual tables; I got success. But I want to know how we can change these settings (sort by levels) by default for all analyses. 

3 REPLIES 3
txnelson
Super User

Re: Sorting the level after analysis

Here is an example of how to do the sorting using JSL

Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Drug.jmp" );
obj = Fit Model(
	Y( :y ),
	Effects( :Drug, :x ),
	Personality( Standard Least Squares ),
	Emphasis( Effect Leverage )
);
myobj = obj << Run(
	:Drug << {LSMeans Student's t( .05, Connecting Letters Report( 1 ) )}
);
objr = obj << report;
Report(myobj)["Response y","Drug","LSMeans Differences Student's t",TableBox(1)] << sort by column( "Level", ascending = 1);

txnelson_0-1686740842383.png

 

Jim

Re: Sorting the level after analysis

Can we do this without JSL?, If possible than please let me know

txnelson
Super User

Re: Sorting the level after analysis

I am not aware of a preferences setting to have the table sorted by level automatically.  I suggest that you add this request to the JMP Wish List.

Jim

Recommended Articles