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 create experiments to support product design and ID useful product features. Register for June 12 webinar, 2pm US Eastern Time.

Discussions

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

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