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 design an experiment, explore factor-response relationships, assess tradeoffs, and ID best settings. Register for Sep. 11 Mastering JMP.

Discussions

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

JMP script for a user select Y, response columns for Fit Y by X

Hi, 

 

I'm trying to write a script that user can select columns for 'Y, response', 'X, Factor', and 'By' for Fit Y by X or Bivariate.

 

I figured out that I can use 'Column Dialog' function to select Y, X, and By using below script. But, I could not write a script to plot Fit Y by X with selected columns. It would be really appreciated if anyone can help to make a full script.

 

Thanks in advance.

 

 

Regards,

Hyungwoo


colDlg = Column Dialog(
Title( "Column Selection" ),
ycol = Col List( "Y, Response", Min Col( 1 ) ),
xcol = Col List( "X, Factor", Min Col( 1 ) ),
bycol = Col List ( "By", Min Col(1))
);

 

 

 

 

 

1 REPLY 1
jthi
Super User

Re: JMP script for a user select Y, response columns for Fit Y by X

This should get you forward:

Names Default To Here(1);
dt = Open("$SAMPLE_DATA/Consumer Preferences.jmp");
colDlg = Column Dialog(
	Title( "Column Selection" ),
	ycol = Col List( "Y, Response", Min Col( 1 ) ),
	xcol = Col List( "X, Factor", Min Col( 1 ) ),
	bycol = Col List ( "By", Min Col(1))
);

Show(colDlg);

biv = dt << Bivariate(Y(colDlg["ycol"]), X(colDlg["xcol"]), By(colDlg["bycol"]));
-Jarmo

Recommended Articles