Hi. I am very new. Before I jump into learning Scripting, I would like to get a confirmation I am approaching this correctly. We want an easy way to create the below simple Distribution report that can be created for a user selected column, typically 30 data points, that looks like the below pic and we are hoping to remove the items with red lines:
An example of a data table is:
Below is the script the system created when I used: Save Script/To Data Table:
Distribution(
Continuous Distribution(
Column( :OD ),
Horizontal Layout( 1 ),
Histogram( 0 ),
Vertical( 0 ),
Process Capability(
Use Column Property Specs,
Process Capability Analysis( Nonconformance( 0 ) )
)
),
Histograms Only,
SendToReport(
Dispatch( {"OD", "Process Capability", "OD Capability", "Histogram"}, "1",
ScaleBox,
{Min( 2.1388234375 ), Max( 2.1636765625 ), Inc( 0.005 ),
Minor Ticks( 5 )}
)
)
);
I am assuming this cannot be done without scripting. If that is not true, please let me know.
What I am planning on doing is trying to learn how to script so the user can select the Column to use, where the above script only uses column "OD". This would, hopefully, give the basic report above by running the script.
Then start looking for script changes to remove the entries that we have crossed out in red.
Is this approach naive? Is there a better way to approach it?
Thank you for any input,
Grant