BookmarkSubscribeRSS Feed
happytrial2020
Calcite | Level 5

Hi, 

 

I have a question about the non-parametric tolerance interval for variables. I follow the procedure below and want to find out the non-parametric tolerance interval for data:

proc capability data=New  noprint;
intervals result_mL / methods = 3 7;
run;

 

I choose the method 3 and 7(Non-parametric). However, the error shows that "

The value specified for METHOD must be an integer greater than or equal to 1 and less than or equal to 6.".

Could someone tell me why it happens and how to fix?

 

Thanks!

 

Thanks!

4 REPLIES 4
ballardw
Super User

The documentation from https://documentation.sas.com/?cdcId=qccdc&cdcVersion=14.3&docsetId=qcug&docsetTarget=qcug_capabilit...

 

shows only options 1 through 6

METHOD=indices

specifies which intervals are computed. The indices can range from 1 to 6, and they correspond to the intervals described in Table 6.50.

 

Table 6.50: Intervals Computed for METHOD=Index

Index

Statistical Interval

1

approximate simultaneous prediction interval for k future observations

2

prediction interval for the mean of k future observations

3

statistical tolerance interval that contains at least proportion p of the population

4

confidence interval for the population mean

5

prediction interval for the standard deviation of k future observations

6

confidence interval for the population standard deviation

 

For example, the following statements tabulate confidence limits for the population mean (METHOD=4) and confidence limits for the population standard deviation (METHOD=6):

proc capability data=steel;
   intervals width / methods=4 6;
run;

 

 

 

 

happytrial2020
Calcite | Level 5

H,

 

Thanks so much for replying. I just happen to see a document that they do have method 7. 

The example is here: https://documentation.sas.com/?docsetId=qcug&docsetTarget=qcug_capability_sect222.htm&docsetVersion=...

The explanation also shows here: https://documentation.sas.com/?docsetId=qcug&docsetTarget=qcug_capability_sect208.htm&docsetVersion=...

 

But I noticed it should be realized by using SAS/QC. 

 

So do you have any idea about how we can make the nonparametric tolerance interval by just using regular SAS version?

 

Thanks so much!

 

ballardw
Super User

@happytrial2020 wrote:

H,

 

Thanks so much for replying. I just happen to see a document that they do have method 7. 

The example is here: https://documentation.sas.com/?docsetId=qcug&docsetTarget=qcug_capability_sect222.htm&docsetVersion=...

The explanation also shows here: https://documentation.sas.com/?docsetId=qcug&docsetTarget=qcug_capability_sect208.htm&docsetVersion=...

 

But I noticed it should be realized by using SAS/QC. 

 

So do you have any idea about how we can make the nonparametric tolerance interval by just using regular SAS version?

 

Thanks so much!

 


The question becomes which version of SAS are you running? It appears that you have an earlier version than SAS/Qc 15.

happytrial2020
Calcite | Level 5

Yes. I am finding my version is expired so that does not work. Thanks for helping!

 

Appreciate it!

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 4 replies
  • 912 views
  • 0 likes
  • 2 in conversation