cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Instantly extract effect sizes, F-ratios, and FDR-adjusted p-values from your models with the Calculate Effects Sizes extension, available now in the JMP Marketplace!
  • 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!
  • See how to use the JMP Marketplace – Free tools to expand JMP capabilities. Register. July 10, 2 pm 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