- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
How do I get unlinked X-axes (separate min and max values) in GraphBuilder?
Hi
I would like to have separate values (min and max) on the x-axis for F and M (BigClass example), so for example F goes from 60-140 while M goes from 70-160. Is this possible? or could there be some other way around it?
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: How do I get unlinked X-axes (separate min and max values) in GraphBuilder?
Not sure if you do it with Page, but you could use some scripting for example with By parameter:
New window("",
Lineup Box(N Col(2),
Graph Builder(
Variables(X(:height), Y(:weight)),
Elements(Points(X, Y, Legend(1)), Smoother(X, Y, Legend(2))),
By(:sex)
)
)
);
Do note that these are two separate graph builders
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: How do I get unlinked X-axes (separate min and max values) in GraphBuilder?
One option could be to use grouping column in Page instead of Group X:
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: How do I get unlinked X-axes (separate min and max values) in GraphBuilder?
Hi jthi
Thank you for your fast reply. Yes using "Page" could be a solution, but will it be possible to arrange the graphs horizontally instead of vertically?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: How do I get unlinked X-axes (separate min and max values) in GraphBuilder?
Not sure if you do it with Page, but you could use some scripting for example with By parameter:
New window("",
Lineup Box(N Col(2),
Graph Builder(
Variables(X(:height), Y(:weight)),
Elements(Points(X, Y, Legend(1)), Smoother(X, Y, Legend(2))),
By(:sex)
)
)
);
Do note that these are two separate graph builders
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: How do I get unlinked X-axes (separate min and max values) in GraphBuilder?
Thank you very much - this is highly appreciated. Even though they are two separate graphs, it sure does the job!