cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Sign-in to the JMP Community will be unavailable intermittently Dec. 6-7 due to a system update. Thank you for your understanding!
  • We’re retiring the File Exchange at the end of this year. The JMP Marketplace is now your destination for add-ins and extensions.
  • JMP 19 is here! Learn more about the new features.

Discussions

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

Mettre en tableau

Bonjour à tous,
 
J’ai un problème depuis un petit moment sur JMP, j’utilise l’option mettre en tableau pour calculer des moyennes (environ sur 900 colonnes)
Toutes les colonnes commencent par la même expression « tps #numéro »
Je cherche un script qui pourrait exécuter cette option mettre en tableau avec une variable dans laquelle serait stockée toutes ces colonnes « tps... »
 
Un exemple de la base de donnée et du code que j’utilise :
 

 

hcarr01_0-1685358633644.png

 

dt = Current Data Table();
abc_cols = Filter Each( {col_name}, dt << Get Column Names( "String", Continuous ), Starts With( col_name, "tps" ) ); Local( {obj}, obj = Data Table( "B" ) << Tabulate( Show Control Panel( 0 ), Add Table( Column Table( Analysis Columns( Column(abc_cols) ), Statistics( Mean ) ), Row Table ( Grouping Columns ( :Article)) ) ); obj << Make Into Data Table; obj << Close Window; );

 

1 ACCEPTED SOLUTION

Accepted Solutions
jthi
Super User

Re: Mettre en tableau

I would suggest using Summary instead of Tabulate. In this case you can use Eval() around your column listing

Names Default To Here(1);
dt = Open("$SAMPLE_DATA/Big Class.jmp");

col_list = {"height", "weight"};

// using summary
dt_summary = dt << Summary(
	Mean(Eval(col_list)),
	Freq("None"),
	Weight("None"),
	link to original datatable(0)
);

// using tabulate
tab = dt << Tabulate(
	Show Control Panel(0),
	Add Table(Column Table(Analysis Columns(Eval(col_list)), Statistics(Mean)))
);

dt_tab = tab << Make Into Data Table;
tab << close Window;
-Jarmo

View solution in original post

2 REPLIES 2
jthi
Super User

Re: Mettre en tableau

I would suggest using Summary instead of Tabulate. In this case you can use Eval() around your column listing

Names Default To Here(1);
dt = Open("$SAMPLE_DATA/Big Class.jmp");

col_list = {"height", "weight"};

// using summary
dt_summary = dt << Summary(
	Mean(Eval(col_list)),
	Freq("None"),
	Weight("None"),
	link to original datatable(0)
);

// using tabulate
tab = dt << Tabulate(
	Show Control Panel(0),
	Add Table(Column Table(Analysis Columns(Eval(col_list)), Statistics(Mean)))
);

dt_tab = tab << Make Into Data Table;
tab << close Window;
-Jarmo
hcarr01
Level VI

Re: Mettre en tableau

Merci pour votre réponse, cela fonctionne correctement !

Recommended Articles