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.
See how to use to use Text Explorer to glean valuable information from text data at April 25 webinar.
Choose Language Hide Translation Bar
View Original Published Thread

Stacked parameter plot in graph builder

ram
ram
Level IV

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