Hi,
I have a table containing a few different experiments A, B, C...that where output Y has been measured. I would like to sort Y in ascending order but not for the whole table, only within each experiment A, B, C...
and get a table like this:
EXP Measurement Y
A YA1
A YA2
A YA3
B YB1
B YB2
B YB3
....
(where YA1<YA3<YA3 but YB1 could be anything either bigger or smaller than YA3)
Thank you for any advice!
Oh, and I'd like to include this into a script I have.
N.
Proc Sort data = test;
by measurement_Y exp;
run;
I think it is simple or i am not to understand your requirement...
-Urvish
Perhaps Im missing something but a a standard proc sort data=your table; by exp measurementY; run; should do what you seek.
EJ
As Eric pointed out, there is fairly straightforward solution. However, if we understand you wrong, and what you mean happen to be: 1. EXP stay the order as is 2. Sort measurement_Y with EXP. Then we will probably need some Hash(). If you do mean the latter, please let us know.
Haikuo
Hi,
Thanks for your help.
I figured out how to do what I needed, was pretty straight forward as you said - Simply needed to have two arguments : By( :column1, :column2 )... Here's what I put in my script:
Data Table( "dt" ) << Sort(
By( :Testing Comments , :MOR ),
Order( Ascending, Ascending ));
Thanks,
N
That looks like JMP code to me.
You may be better posting these types of question in a JMP forum instead. ![]()
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.