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 2024

Innovate_SAS_Blue.png

Registration is open! SAS is returning to Vegas for an AI and analytics experience like no other! Whether you're an executive, manager, end user or SAS partner, SAS Innovate is designed for everyone on your team. Register for just $495 by 12/31/2023.

If you are interested in speaking, there is still time to submit a session idea. More details are posted on the website. 

Register now!

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.

Get the $99 certification deal.jpg

 

 

Back in the Classroom!

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

View all other training opportunities.

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