cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Instantly extract effect sizes, F-ratios, and FDR-adjusted p-values from your models with the Calculate Effects Sizes extension, available now in the JMP Marketplace!
  • New to JMP? Join us Sept. 23-24 for the Early User Edition of Discovery Summit, tailor-made for new users. Register now for free!
  • Your voice matters! Tell us how you prefer to receive JMP updates, so we can tailor our communication to your needs. Take short survey.

Discussions

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

Need Help: Fit Model Window and Report Window in Listboxes

Hello,

 

I have a problem: I want to put the "fit model" window to a listbox, when user presses the run button, I can put the report window to another listbox. But the report window doesn't go to the listbox automatically when I press the run button , how to resolve it? 

6 REPLIES 6
Byron_JMP
Staff

Re: Need Help: Fit Model Window and Report Window in Listboxes

I'm not quite sure if I understand what you're asking, could you post an example of what you're trying to do?

JMP Systems Engineer, Health and Life Sciences (Pharma)
lehaofeng
Level V

Re: Need Help: Fit Model Window and Report Window in Listboxes

Thank you! This is my script: 

Tab Box(
	"setting",
	V List Box(
		H List Box( align( center ), Button Box( "select datatable" ), Spacer Box( size( 5, 1 ) ), fit_tb1 = Text Box( "raw data.jmp" ) ),
		dlg = dt1 << fit model( Y(  ), Effects(  ), 
		<<keep dialog open( 1 ) )
	),
	"report",
	V List Box(
		【 put dlg(fit model) run results to here! but how? 】
	)
) 

 

jthi
Super User

Re: Need Help: Fit Model Window and Report Window in Listboxes

lehaofeng
Level V

Re: Need Help: Fit Model Window and Report Window in Listboxes

TKS, I have tried it , but it didn't work.

The problem is that when I press the run button(in fit model platform), the report window cannot be controlled well and is not easy to reference.

 

jthi
Super User

Re: Need Help: Fit Model Window and Report Window in Listboxes

You might have to capture the script on trigger, close the report window and then rerun and add it to the vlb. 

-Jarmo
lehaofeng
Level V

Re: Need Help: Fit Model Window and Report Window in Listboxes

Yes, I am currently stuck at the step of capturing the script. I don’t know how to automatically capture the script for the report window when it triggers.

Recommended Articles