cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • JMP 19 is here! See the new features at jmp.com/new.
  • Due to global connectivity issues impacting AWS Services, users may experience unexpected errors while attempting to authorize JMP. Please try again later or contact support@jmp.com to be notified once all issues are resolved.

Discussions

Solve problems, and share tips and tricks with other JMP users.
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