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!
  • Your voice matters! Tell us how you prefer to receive JMP updates, so we can tailor our communication to your needs. Take short survey.

Discussions

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

Recode column names

Hi,

 

I am very new to JMP and would like to know how to rename the existing column name if it contains some character string that I am looking for ?

 

For example if original column name is "ghdl_Male_test_case", how do I rename it to just "Male" ? Thanks in advance.

1 ACCEPTED SOLUTION

Accepted Solutions
txnelson
Super User

Re: Recode column names

There is a Column Recode dialog

     Cols=>Column Names=>Recode Column Names

 

Or you can use a variation on the below script to do the recoding

Names Default To Here( 1 );
dt = Current Data Table();
colNamesList = dt << get column names( string );

For Each( {col, i}, colNamesList,
	If( Contains( col, "Male" ),
		Column( dt, col ) << set name( "Male" )
	)
);
Jim

View solution in original post

3 REPLIES 3
Satya1
Level II

Re: Recode column names

I forgot to mention that I am looking to rename multiple columns using JSL script. 

txnelson
Super User

Re: Recode column names

There is a Column Recode dialog

     Cols=>Column Names=>Recode Column Names

 

Or you can use a variation on the below script to do the recoding

Names Default To Here( 1 );
dt = Current Data Table();
colNamesList = dt << get column names( string );

For Each( {col, i}, colNamesList,
	If( Contains( col, "Male" ),
		Column( dt, col ) << set name( "Male" )
	)
);
Jim
Satya1
Level II

Re: Recode column names

Thank you so much Jim :)

Recommended Articles