cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • JMP will suspend normal business operations for our Winter Holiday beginning on Wednesday, Dec. 24, 2025, at 5:00 p.m. ET (2:00 p.m. ET for JMP Accounts Receivable).
    Regular business hours will resume at 9:00 a.m. EST on Friday, Jan. 2, 2026.
  • We’re retiring the File Exchange at the end of this year. The JMP Marketplace is now your destination for add-ins and extensions.

Discussions

Solve problems, and share tips and tricks with other JMP users.
Choose Language Hide Translation Bar

How to access the control chart variables

Hi, I am trying to set the scale of the control chart to 0 whenever the LCL is lower then 0, does somebody knows how to do it?, I don’t know how to get the LCL from the report.
Thank a lot, Pniel

for(i=2, i<=ncol(tras), i++,
vcontrol=vListBox(
rrrr=Control Chart(
Sample Label( :Date ),
Group Size( 1 ),
KSigma( 3 ),
Chart Col( column(i), Individual Measurement )
);
//report(rrrr)[axisbox(1)]<//report(rrrr)[axisbox(1)]<);
vl<);
newFit = NewWindow(ControlChartMsg,vl);
3 REPLIES 3

Re: How to access the control chart variables

sory this is the code in order to change the scale to 0 i need the LCL

vcontrol=vListBox(
rrrr=Control Chart(
Sample Label( :Date ),
Group Size( 1 ),
KSigma( 3 ),
Chart Col( column(i), Individual Measurement ));

//report(rrrr)[axisbox(1)]<//report(rrrr)[axisbox(1)]<);
vl<
pmroz
Super User

Re: How to access the control chart variables

To post code without fear of being interpreted as HTML, enclose it in the following delimiters:

Re: How to access the control chart variables

tanks man this is the code

Recommended Articles