cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • New to JMP? Join us Sept. 23-24 for the Early User Edition of Discovery Summit, tailor-made for new users. Register now for free!
  • Use World Cup data to build models, explore spatial relationships, and create informative visualizations in JMP. Register. July 17, 2 pm US Eastern Time.
  • Your voice matters! Tell us how you prefer to receive JMP updates, so we can tailor our communication to your needs. Take short survey.

Discussions

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

saving the probabiliy scores fro a norma quantile plot in JSL

Hi all,

From the distributions I can plot a normal quantile plot and by clicking on the red arrow I can then save in a new column in my data table the probability scores. How do I do that in a script in JSL? I

ValeriaL_0-1678643059688.pngValeriaL_1-1678643222864.png

Thanks, Valeria

1 ACCEPTED SOLUTION

Accepted Solutions
Thierry_S
Super User

Re: saving the probabiliy scores fro a norma quantile plot in JSL

Hi,

 

Here is a simple JSL script that will save the Prob Scores of column XXX in the Current Data Table.

Names Default to Here (1);

dt = Current Data Table ();

obj = dt << Distribution(column (:XXX));
obj << Save( Prob Scores );

 Best,

TS

Thierry R. Sornasse

View solution in original post

2 REPLIES 2
Thierry_S
Super User

Re: saving the probabiliy scores fro a norma quantile plot in JSL

Hi,

 

Here is a simple JSL script that will save the Prob Scores of column XXX in the Current Data Table.

Names Default to Here (1);

dt = Current Data Table ();

obj = dt << Distribution(column (:XXX));
obj << Save( Prob Scores );

 Best,

TS

Thierry R. Sornasse
ValeriaL
Level I

Re: saving the probabiliy scores fro a norma quantile plot in JSL

Thank you Thierry, it does exactly what I wanted!

Recommended Articles