cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
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!