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
ACraig
Level I

Can you use JSL script to run the Means/ANOVA and Student's t within Fit Y by X

I am building a workflow and while recording I do the Fit Y by X and then do the Means/ANOVA and Means Comparisons -> Student's t. When I stop recording it only does the JSL script for the Fit X by Y:

Data Table( "My Table" )
 << Oneway(
	Y( :Percent Change ),
	X( :Estimate ),
	Means( 1 ),
	Mean Diamonds( 1 ),
	Each Pair( 1 ),
	SendToReport(
		Dispatch( {}, "Oneway Plot", FrameBox, {Frame Size( 474, 336 )} )
	)
)

Does anyone know how to add the code in to have the Means/ANOVA and Student's t run auotmatically?

1 REPLY 1
jthi
Super User

Re: Can you use JSL script to run the Means/ANOVA and Student's t within Fit Y by X

Doesn't that script include all of those (Means(1) and Each Pair(1))?

-Jarmo