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.
Delete Empty Columns
robot
Level VI

This JSL script will delete empty data columns.

Comments
fitri

my version as below .

dt = Current Data Table();

For( i = N Col( dt ), i >= 1, i--,

       If( (Col N Missing( Column( i ) ) / N Row()) == 1,

              dt << delete columns( i )

       )

);

Thomas1

Simple and effective. Thanks

Thanks :beaming_face_with_smiling_eyes:

dspa

Piggybacking off @fitri , this worked for me

// get col names
colnames = dt << Get Column Names;

// delete empty columns
For( j = 1, j <= N Items( colnames ), j++,
	If( Col N Missing( Column( colnames[j] ) ) / N Row() == 1,
		dt << delete columns( colnames[j] )
	)
);

Recommended Articles