cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Learn how to build custom Python data connectors and further customize JMP’s Data Connector Framework with the Python Data Connector Demo, available now in the JMP Marketplace!
  • See how to create experiments to support product design and ID useful product features. Register for June 12 webinar, 2pm US Eastern Time.

Discussions

Solve problems, and share tips and tricks with other JMP users.
Choose Language Hide Translation Bar
pniel
Level I

Jackknife Predicted Values


Dear developers.

I need to retrieve the predicted value from Jackknife

I saw an example of getting the value from the table in the scripting guide..

myJackVal = column(“Jackknife Distances”)<<Get Property(“Jackknife value”);

Unfortunately I don’t know how to save the values to the data table.

Can someone please help?

Thanks,

Pniel

1 ACCEPTED SOLUTION

Accepted Solutions

Re: Jackknife Predicted Values

Hello Pniel,

I see that this post is from a while ago, so you might have figured out an answer to your question already. If not, this script might help with what you're trying to do.

 

dt = open( "$SAMPLE_DATA/Cytometry.jmp" );
mv = Multivariate( Y( :ForSc, :SideSc, :CD3, :CD8, :CD4, :MCB ) );
mv << Jackknife Distances( 1, Save Jackknife Distances );
jd = dt:Jackknife Distances << get values;

 


Regards,

Michael

 

Michael Crotty
Principal Statistical Writer
Manager, Statistical Documentation
JMP Development

View solution in original post

3 REPLIES 3

Re: Jackknife Predicted Values

Hello Pniel,

I see that this post is from a while ago, so you might have figured out an answer to your question already. If not, this script might help with what you're trying to do.

 

dt = open( "$SAMPLE_DATA/Cytometry.jmp" );
mv = Multivariate( Y( :ForSc, :SideSc, :CD3, :CD8, :CD4, :MCB ) );
mv << Jackknife Distances( 1, Save Jackknife Distances );
jd = dt:Jackknife Distances << get values;

 


Regards,

Michael

 

Michael Crotty
Principal Statistical Writer
Manager, Statistical Documentation
JMP Development
UserLightNew
Level II

Re: Jackknife Predicted Values

Thanks for the helpful answer, Michael. With regard to Jackknife distances, in the graph I can see an UCL value being displayed as well as a horizontal dashed line marking the UCL value. When I tried to extract the UCL value I realized it is stored in a FrameBox. Is there any way to extract the UCL value through JSL?

 

 

txnelson
Super User

Re: Jackknife Predicted Values

If you save the Jackknife distancies, the column that is saved has a Column Property called Jackknife Value.  You can retrieve that value with

     UCL = col << get property( "Jackknife Value" )

Jim

Recommended Articles