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
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