- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Sorting a column with a script
I have a file (mydata.jmp) and I manually sort the Temperature column (right click, and then Sort).
I'm trying to automate this in a jmp script. what's the correct command so the column is sorted and the new file retains the original file name. I have tried a few commands and the result of the sort command creates a new unnamed file, which is NOT what I want.
1 ACCEPTED SOLUTION
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Sorting a column with a script
2 REPLIES 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Sorting a column with a script
Try this syntax:
dt << sort( by( col ), Replace Table );
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Sorting a column with a script
Adding the Replace Table did the trick. Thanks!