I am running an EWMA control chart via Analyze > Quality and Process > Control Chart >> EWMA Control Chart. It appears that I am unable to add a title to the chart. I am also trying to set up a script. I have the basic code,
EWMA Control Chart( Y( :Thickness ), Subgroup( :Date ), Lambda Slider( 1 ) );
in place. Is there a way through either scripting or the above portal to add a title? Can an EWMA Control Chart be setup through the Control Chart Builder? I tried but unable to make it happen. Thank you.
Normally, I just change the text on the Outline Box as my title
Names Default To Here( 1 );
dt =
// Open Data Table: big class.jmp
// → Data Table( "big class" )
Open( "$SAMPLE_DATA/big class.jmp" );
ew = EWMA Control Chart( Y( :height ), Subgroup( :age ), Lambda Slider( 1 ) );
Report( ew )[Outline Box( 3 )] << set title( "This could be your title" );
Normally, I just change the text on the Outline Box as my title
Names Default To Here( 1 );
dt =
// Open Data Table: big class.jmp
// → Data Table( "big class" )
Open( "$SAMPLE_DATA/big class.jmp" );
ew = EWMA Control Chart( Y( :height ), Subgroup( :age ), Lambda Slider( 1 ) );
Report( ew )[Outline Box( 3 )] << set title( "This could be your title" );
Jim, thank you for the response. This looks like it will take care of this issue.