cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • DownloadSemiconductor Toolkit: Tools to create wafer maps, add wafer geometry to graphics, explore die defects & compare wafers.
  • Discovery Summit 2026: Early User Edition - September 23-24.Register. It's free.
  • See how to use JMP Pro to analyze and predict using entire data set rather than selected points in a curve. Register for Nov. 6 Mastering JMP.

Discussions

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

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