cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
The Discovery Summit 2025 Call for Content is open! Submit an abstract today to present at our premier analytics conference.
Get the free JMP Student Edition for qualified students and instructors at degree granting institutions.
Choose Language Hide Translation Bar
View Original Published Thread

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

WoHNY
Level III

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 III


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

Jim: Thank you for that.