cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
JMP is taking Discovery online, April 16 and 18. Register today and join us for interactive sessions featuring popular presentation topics, networking, and discussions with the experts.
Choose Language Hide Translation Bar
jsuls
Level I

How to hide charts with no data when scripting to create Control Charts?

I was wondering if it is possible to script a control chart such that if there is no data, the graph will not show. I often run into the problem where there is no data present for one of the charts I am making so I want it to not be shown. A picture of this is shown below. The charts are scripted so they show up BY "Treatment for Delcom", a character column. In some cases, there are missing data points so the treatment shows up blank. I cannot hide the missing data points because it will affect my other graphs I am making.

9133_graph.png

1 ACCEPTED SOLUTION

Accepted Solutions

Re: How to hide charts with no data when scripting to create Control Charts?

That came out really bad looking but I didn't notice before I clicked Add Reply!

Try this picture instead:

9160_Capture.PNG

View solution in original post

3 REPLIES 3
scwise
Staff

Re: How to hide charts with no data when scripting to create Control Charts?

jsuls,

Thanks for the question.

Have you considered creating an indicator formula in a separate column that could tell JMP if there is a measure in the data column?  Then it would be easy to include a script that only triggers off of the indicator column to ensure that only the control charts for groupings with actual data get generated!

Here is a quick example...see the attached "No Missing Control Chart.jmp" with scripting attached ("My Script").  First we created a simple datatable to control chart with 10 rows of data for machines A, B & C.  However machine C did not record any data and per your instruction: 1) we don't want to plot a control chart for C when using Machine as a "By", but 2) we cannot just filter the data column to exclude missing values.

9154_Screen Shot 2015-07-02 at 7.17.09 AM.png

So instead of using a filter on the data column (which you indicated was not an option), we created a simple formula to make an indicator column to let JMP know if there is any data present, using conditional and comparison formula function elements.  So here if there is any data in the row it will return a "Plot" label.

9161_Screen Shot 2015-07-02 at 7.23.16 AM.png

Now that we have this indicator "flagged" column, we can then use this as a trigger in our script to only get carts plotted for the A & B machines that have data and not plot the C machine that has no data recorded.  So really only had to add a Where statement in my normal control chart script to trigger off of only the rows that had data (as indicated by the "Plot" label in our created flag column.  The results gave me only the machine control chart plots that truly had data in it.

9166_Screen Shot 2015-07-02 at 7.39.48 AM.png

9163_Screen Shot 2015-07-02 at 7.18.58 AM.png

While there are probably many ways to go at it with JMP scripting, see if this simple approach might be an easy way to help straighten out your control charting universe.

Scott

Re: How to hide charts with no data when scripting to create Control Charts?

A scripted solution would detect and delete the By groups with zero observations. This example illustrates this approach. It opens up the Big Class data tables and adds two rows in a new age group with missing height data. It launches XmR control charts on height by age, so the last pair of charts is empty. It uses the Summarize() function to determine the number of height observations in each group, locates groups with a zero count, and then systematically removes the associated pair of charts from the bottom.

= Open( "$SAMPLE_DATA/Big Class.jmp" );



<< Add Rows(


:name = "Mark", :age = 29, :sex = "M" },


:name = "James", :age = 29, :sex = "M" }


;



= dt << Control Chart(


1 ),


3 ),


:height, Individual Measurement, Moving Range ),


:age )


;



( group size = Count( :height ), age group = By( :age ) );



= Loc( Not( group size ) );


= N Row( to be deleted );



( nr,


For( r = nr, r > 0, r--,


Report( cc[to be deleted[r]] ) << Delete;


;


;

Re: How to hide charts with no data when scripting to create Control Charts?

That came out really bad looking but I didn't notice before I clicked Add Reply!

Try this picture instead:

9160_Capture.PNG