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
Jo_E
Level III

List of columns starting with

I would like a script which inserts all columns with column names starting with "animal names" into the column list "animal list". I am sure it is simple but the AI-generated script is not working.

1 ACCEPTED SOLUTION

Accepted Solutions
txnelson
Super User

Re: List of columns starting with

Here is a simple example of how I would do this

names default to here(1);
dt=open("$SAMPLE_DATA/blood pressure.jmp");

animal list = dt << get column names(string);

animal list = filter each( {col}, animal list,
	starts with(col,"BP")
);
Jim

View solution in original post

2 REPLIES 2
txnelson
Super User

Re: List of columns starting with

Here is a simple example of how I would do this

names default to here(1);
dt=open("$SAMPLE_DATA/blood pressure.jmp");

animal list = dt << get column names(string);

animal list = filter each( {col}, animal list,
	starts with(col,"BP")
);
Jim
Jo_E
Level III

Re: List of columns starting with

Thank you, that was helpful.

Recommended Articles