cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
The Discovery Summit 2025 Call for Content is open! Submit an abstract today to present at our premier analytics conference.
Choose Language Hide Translation Bar
WoHNY
Level III

JMP 16 Adding Title to EWMA Control Chart

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.

1 ACCEPTED SOLUTION

Accepted Solutions
txnelson
Super User

Re: JMP 16 Adding Title to EWMA Control Chart

Normally, I just change the text on the Outline Box as my title

txnelson_0-1659908978426.png

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

View solution in original post

2 REPLIES 2
txnelson
Super User

Re: JMP 16 Adding Title to EWMA Control Chart

Normally, I just change the text on the Outline Box as my title

txnelson_0-1659908978426.png

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
WoHNY
Level III

Re: JMP 16 Adding Title to EWMA Control Chart

Jim, thank you for the response. This looks like it will take care of this issue.