- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
graph builder x axes- how to change the axes rang when i wrapped several graphs together
graph builder x axes- how to change the axes rang when i wrapped several graphs together
8 REPLIES 8
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: graph builder x axes- how to change the axes rang when i wrapped several graphs together
not sure what you meant. Can you include a picture?
Thuong Le
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: graph builder x axes- how to change the axes rang when i wrapped several graphs together
The axes on the left and bottom are still active when you wrap the graphs. Is this what you need?
Jim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: graph builder x axes- how to change the axes rang when i wrapped several graphs together
thank you for the quick response.
for every square i want the same value but to change the range. and if it
is possible to present them.
attaching an example:
[image: image.png]
for every square i want the same value but to change the range. and if it
is possible to present them.
attaching an example:
[image: image.png]
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: graph builder x axes- how to change the axes rang when i wrapped several graphs together
no attached image
Jim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: graph builder x axes- how to change the axes rang when i wrapped several graphs together
Created:
Oct 29, 2020 01:32 PM
| Last Modified: Nov 1, 2020 12:47 PM
(3181 views)
| Posted in reply to message from txnelson 10-29-2020
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: graph builder x axes- how to change the axes rang when i wrapped several graphs together
The wrap will not give you separate axes that can be changed. However, the By clause will, and if you put a Lineup Box() around the Graph Builder, you can get the results you want. Below is a sample script
Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/semiconductor capability.jmp" );
nw = New Window( "Example",
Lineup Box( N Col( 3 ),
Graph Builder(
Size( 324, 293 ),
Show Control Panel( 0 ),
Variables( X( :NPN2 ), Y( :NPN1 ) ),
Elements( Points( X, Y, Legend( 1 ) ), Smoother( X, Y, Legend( 2 ) ) ),
by( :wafer )
)
)
);
Jim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: graph builder x axes- how to change the axes rang when i wrapped several graphs together
thank you very much. this us exactly what i been looking for. if just can explain step by step how you do it? (not in a script please )
thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: graph builder x axes- how to change the axes rang when i wrapped several graphs together
To interactively do what I showed is a laborious process.
- Run the Graph Builder using the Dialog Box input, and specify a BY column.
- Once the graphs are produced open a Journal......CNTL/Shift/J
- Go back to the graphs and select the "Selection Tool" from the tool box.
- Go to the Outline Box for the first graph, click and hold and drag the graph to the journal
- Go to the next graph's Outline Box and click and drag it to the right of the first graph in the journal.
- Repeat step 5 with the next graph.
- Go to the 4th graph in the original output, and drag it to a position below the first graph in the journal.
- Repeat the process until all graphs have been moved.
As you can see, running a script would be much simpler.
Jim