cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
New to using JMP? Hit the ground running with the Early User Edition of Discovery Summit. Register now, free of charge.
Register for our Discovery Summit 2024 conference, Oct. 21-24, where you’ll learn, connect, and be inspired.
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