BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
MRatchford
Calcite | Level 5

Hello I am trying to run a probability plot but I am getting the error below.  Please note code below as well.  Any ideas?  Thanks!!

 

82 * Normal Probability Plot;
83 title 'Normal Probability Plot for Independent Variable X1';
84 proc capability data=hatco noprint;
ERROR: Procedure CAPABILITY not found.
85 specs lsl=9.5 usl=10.5;

 

* Normal Probability Plot;
title 'Normal Probability Plot for Independent Variable X1';
proc capability data=hatco noprint;
specs lsl=9.5 usl=10.5;
ppplot x1 / normal(mu=est sigma=est)
square
odstitle=title
nospeclegend;
run;

1 ACCEPTED SOLUTION

Accepted Solutions
ChrisHemedinger
Community Manager

PROC CAPABILITY is part of SAS/QC.  Run:

 

proc product_status; run;

 

To see if you should expect QC procedures to work.  If using SAS University Edition, SAS/QC is not part of that environment.

It's time to register for SAS Innovate! Join your SAS user peers in Las Vegas on April 16-19 2024.

View solution in original post

3 REPLIES 3
ChrisHemedinger
Community Manager

PROC CAPABILITY is part of SAS/QC.  Run:

 

proc product_status; run;

 

To see if you should expect QC procedures to work.  If using SAS University Edition, SAS/QC is not part of that environment.

It's time to register for SAS Innovate! Join your SAS user peers in Las Vegas on April 16-19 2024.
MRatchford
Calcite | Level 5

Thank you Chris.  It makes sense.  I run the product_status and SAS/QC is not part of it.  Yes, I am running SAS Univ Edition.

 

So the question now is:  in order to check the normality of the variables, besides drawing the historgrams, what other proc can I run that gives me the normality check?   Also, how can I get the the line of the bell curve drawn over the histogram?

Thanks again,

Melva

ChrisHemedinger
Community Manager

Univariate or Multivariate?  Check PROC UNIVARIATE for one, and refer to Rick's post about multivariate.  The PROC CORR example looks like a simple first step, and Rick also mentions the %MULTINORM macro.

It's time to register for SAS Innovate! Join your SAS user peers in Las Vegas on April 16-19 2024.

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

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
  • 3 replies
  • 4385 views
  • 0 likes
  • 2 in conversation