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 use Accelerated Life Testing (ALT) to evaluate reliability. Register for June 5 webinar, 2pm US Eastern Time.

Discussions

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

Script sélection suppression de colonne

Bonjour,

j'ai transformé un tableau en table de données par un script.

Sur cette nouvelle table de donnée je souhaiterai  avoir un script permettant de supprimer toutes les colonnes de la dernière ligne (Chef de projet = Tout) qui sont à 0 sur cette ligne.  Pourriez vous m'aider? Un exemple de fichier est en pj.

Merci par avance

 

1 REPLY 1
SDF1
Super User

Re: Script sélection suppression de colonne

Hi @GregP ,

 

  I think I understand what you want: you want a script that will delete all the columns where "Tout" is =0, is this correct? If so, this script should do it for you.

 

Names default to Here(1);

dt = current data table();

colnames = dt<<get column names;

delcolnames={};
For (i=1, i<=Nitems(colnames), i++,
	If(Column(i)[NRows(dt)]==0,
	Insert into(delcolnames, Column(i)))
);

dt<<Select Columns(delcolnames)<<Delete Columns;

 

Hope this helps!,

DS

Recommended Articles