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
ram
ram
Level IV

Stacked parameter plot in graph builder

Hi All,

i am Trying to make a plot like the one shown in below cartoon in JMP.  can have multiple parameter on y axis as shown. These y parameter are of different scale. one parameter may be in 1e-9 and other may be in 1e+12. so need to have different y scale for different y parameters. after that each y parameter have their targets as hown in blue line. X axis is can be 1 parameter.

Is it somethign available in graph builder. or can be done using script?

Thanks in advance.

Ram

 

Graph builder graph.PNG

 

2 ACCEPTED SOLUTIONS

Accepted Solutions
txnelson
Super User

Re: Stacked parameter plot in graph builder

@ram

The documentation on how to do this is covered in:

     Help==>Books==>Essential Graphing==>Create Separate Axes in the X and Y Zones

Multiple Y axes can easily be handled in Graph Builder

multiple y's.JPG

Names Default To Here( 1 );
Open( "$SAMPLE_DATA\Semiconductor Capability.jmp" );
Graph Builder(
	Variables( Y( :PNP1 ), Y( :NPN1 ), Y( :PNP2 ) ),
	Elements( Position( 1, 1 ), Points( Y, Legend( 5 ) ) ),
	Elements( Position( 1, 2 ), Points( Y, Legend( 6 ) ) ),
	Elements( Position( 1, 3 ), Points( Y, Legend( 7 ) ) )
);
Jim

View solution in original post

XanGregg
Staff

Re: Stacked parameter plot in graph builder

Like Jim said, but with an x variable and box plots:

 

Screen Shot 2017-08-11 at 8.39.11 PM.png

 

Each Y axis can have its own reference lines. 

 

 

 

View solution in original post

4 REPLIES 4
txnelson
Super User

Re: Stacked parameter plot in graph builder

@ram

The documentation on how to do this is covered in:

     Help==>Books==>Essential Graphing==>Create Separate Axes in the X and Y Zones

Multiple Y axes can easily be handled in Graph Builder

multiple y's.JPG

Names Default To Here( 1 );
Open( "$SAMPLE_DATA\Semiconductor Capability.jmp" );
Graph Builder(
	Variables( Y( :PNP1 ), Y( :NPN1 ), Y( :PNP2 ) ),
	Elements( Position( 1, 1 ), Points( Y, Legend( 5 ) ) ),
	Elements( Position( 1, 2 ), Points( Y, Legend( 6 ) ) ),
	Elements( Position( 1, 3 ), Points( Y, Legend( 7 ) ) )
);
Jim
ram
ram
Level IV

Re: Stacked parameter plot in graph builder

Thank you Jim.

Ram

XanGregg
Staff

Re: Stacked parameter plot in graph builder

Like Jim said, but with an x variable and box plots:

 

Screen Shot 2017-08-11 at 8.39.11 PM.png

 

Each Y axis can have its own reference lines. 

 

 

 

ram
ram
Level IV

Re: Stacked parameter plot in graph builder

Thank you Gregg