cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • JMP 19 is here! See the new features at jmp.com/new.
  • Register to attend Discovery Summit 2025 Online: Early Users Edition, Sept. 24-25.
Choose Language Hide Translation Bar
WoHNY
Level IV

JMP 18: Analyze > Multivariate Platform Is Spearman's Rho Scriptable?

Analyze > Multivariate Methods > Multivariate, simple script below generates correlation table. Then I click on the red triangle, to the left of Multivariate, and select Nonparametric Correlations > Spearman's p. Is generating this Spearman's table scriptable?

 

// Launch platform: Multivariate
dt = Data Table("CorrData") << Multivariate(
	Y(:Response, :P1, :P2, :P3),
	Variance Estimation("Row-wise"),
	Matrix Format("Square"),
	Scatterplot Matrix(0),
	By(:Parm Name)
);
1 ACCEPTED SOLUTION

Accepted Solutions
txnelson
Super User

Re: JMP 18: Analyze > Multivariate Platform Is Spearman's Rho Scriptable?

After you do that, just go to the red triangle and select

     Save Script=>Script Window

and it will show you the script

Multivariate(
	Y( :age, :height ),
	Variance Estimation( "Row-wise" ),
	Scatterplot Matrix( 1 ),
	Spearman's ρ( 1 )
);
Jim

View solution in original post

2 REPLIES 2
txnelson
Super User

Re: JMP 18: Analyze > Multivariate Platform Is Spearman's Rho Scriptable?

After you do that, just go to the red triangle and select

     Save Script=>Script Window

and it will show you the script

Multivariate(
	Y( :age, :height ),
	Variance Estimation( "Row-wise" ),
	Scatterplot Matrix( 1 ),
	Spearman's ρ( 1 )
);
Jim
WoHNY
Level IV

Re: JMP 18: Analyze > Multivariate Platform Is Spearman's Rho Scriptable?

Jim: Thank you for that.

Recommended Articles