- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
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
2 REPLIES 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: JMP 18: Analyze > Multivariate Platform Is Spearman's Rho Scriptable?
Jim: Thank you for that.