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.

JMP Wish List

We want to hear your ideas for improving JMP. Share them here.
Choose Language Hide Translation Bar

<< Set Column Names() operation

This would just be a bit of syntactic sugar that hopefully would provide a performance improvement over a JSL for loop.  Currently there is only the ability to change one column name at a time.  With the latest changes to JMP 14 I find myself hitting APIs more often.  Unlike SQL I can't easily change the column name in the data pull.  It would be nice to just change all the column names at once after pulling my data.  I think this would improve user friendliness as well since most of the << Get statements have a corresponding << Set statement.  

1 Comment
mjoner
Level VI

I agree. One can write something like

For(i=1,i<=N Items(myList),i++,Column(dt,i) << Set Name(myList[i]));

But it isn't intuitive what this is doing. A << Set Column Names message would be more readable.