BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
CharaH
Calcite | Level 5
We recently renewed are license but unfortunately we no longer have the capability to use PROC SHEWHART (example below). I am striking out on finding a comparable alternative to this procedure. It is a program that runs once per month, so necessary that it is as close as possible to the original programming language. Thank you in advance! proc shewhart DATA=DPROJECT; WHERE LOC="&LOC"; SYMBOL V=DOT C=BLACK; IRchart RATE*MM/ALLLABEL=(RATE)ALLN SIGMAS=2 CCONNECT=BLUE CINFILL=CXDEDDED CFRAME=RED CFRAMELAB=WHITE NOHLABEL NOLIMITSLEGEND NOCHART2 UCLLABEL='High Zone' LCLLABEL='Low Zone' WLIMITS=1 NAME='LINE' HEIGHT=3 FONT=SWISS; SYMBOL W=3; TITLE H=3 F=SWISSB 'INCIDENT RATE PER 100 ADP'; TITLE2 COLOR=RED F=SWISSB H=2 "&LOCNAME"; FOOTNOTE; FORMAT MM MO_YR.; run;
1 ACCEPTED SOLUTION

Accepted Solutions
PaigeMiller
Diamond | Level 26

There is no real substitute for PROC SHEWHART.

 

You could use PROC SGPLOT to plot the data points and limits (you would have to calculate the limits prior to running PROC SGPLOT), but it would take a lot of programming to do all the testing that PROC SHEWHART does and then replicate this on the plot.

--
Paige Miller

View solution in original post

2 REPLIES 2
PaigeMiller
Diamond | Level 26

There is no real substitute for PROC SHEWHART.

 

You could use PROC SGPLOT to plot the data points and limits (you would have to calculate the limits prior to running PROC SGPLOT), but it would take a lot of programming to do all the testing that PROC SHEWHART does and then replicate this on the plot.

--
Paige Miller
CharaH
Calcite | Level 5

Thank you for your quick response.  I had suspected as much, but hoped someone out there had found a simple solution.

 

 

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 702 views
  • 0 likes
  • 2 in conversation