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
mindjob
Level I

How to calculate mean minus 3 sigma?

Is there a way to program Jmp 8.0 to calculate mean - 3 standard deviations from a set of data? I use this criteria in my tests and until now have always had to do it in Excel. The problem with that is that I have to validate the spreadsheet I write to do the calculation. Using Jmp, I don't think I'd have to

Thanks,
Greg

1 ACCEPTED SOLUTION

Accepted Solutions
louv
Staff (Retired)

Re: mean - 3 sigma

I would use the control chart platform to generate the mean +/- 3 sigma represented by the UCL and LCL. If you are trying to do it in the JMP table then try using the tabulate platform and drag and drop the statistics of interest. Then make a table and add columns using the formula editor to generate your calculation of interest.

View solution in original post

2 REPLIES 2
louv
Staff (Retired)

Re: mean - 3 sigma

I would use the control chart platform to generate the mean +/- 3 sigma represented by the UCL and LCL. If you are trying to do it in the JMP table then try using the tabulate platform and drag and drop the statistics of interest. Then make a table and add columns using the formula editor to generate your calculation of interest.

Re: mean - 3 sigma

This script will make a new formula column for each selected column in your data table. The formula will be the mean of the column minus 3s.

initdata = Current Data Table();
sc = initdata << Get Selected Columns();
scn = initdata << Selected Column Names();
for(i=1,i<=length(sc),i++,
values = sc[ i ] << Get as Matrix;
m = mean(values);
s = stddev(values);
tmp = "initdata << New Column(\!"Mean of " || Char(sc[ i ]) || " - 3s\!", Formula(" || Char(m) || " - 3*" || Char(s) || "));";
Eval(Parse(tmp));
);

Message was edited by: mewing

Recommended Articles