cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Learn how to build custom Python data connectors and further customize JMP’s Data Connector Framework with the Python Data Connector Demo, available now in the JMP Marketplace!
  • See how to create experiments to support product design and ID useful product features. Register for June 12 webinar, 2pm US Eastern Time.

Discussions

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

How to select a group and delete the columns via JSL ?

Hi,

 

I am looking for a way in JSL to select an existing group of columns and then delete the columns in this group.

Sorry for asking but I am still a beginner in scripting.

1 ACCEPTED SOLUTION

Accepted Solutions
jthi
Super User

Re: How to select a group and delete the columns via JSL ?

There are many ways to do this.

  1. Use << Get Column Group(<groupname>) to get list of the columns in the group
  2. Use << Delete Columns() with the list to remove columns from data table

Scripting index should be able to provide quite good examples for both of the functions

-Jarmo

View solution in original post

2 REPLIES 2
jthi
Super User

Re: How to select a group and delete the columns via JSL ?

There are many ways to do this.

  1. Use << Get Column Group(<groupname>) to get list of the columns in the group
  2. Use << Delete Columns() with the list to remove columns from data table

Scripting index should be able to provide quite good examples for both of the functions

-Jarmo
LogitTurtle576
Level III

Re: How to select a group and delete the columns via JSL ?

Thanks @jthi for your quick reply

Recommended Articles