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
View Original Published Thread

How do I get unlinked X-axes (separate min and max values) in GraphBuilder?

NRE_DK
Level I

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?

NRE_DK_0-1641288793136.png

 

1 ACCEPTED SOLUTION

Accepted Solutions
jthi
Super User


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)
		)
	)
);

jthi_0-1641311676386.png

Do note that these are two separate graph builders

 

-Jarmo

View solution in original post

4 REPLIES 4
jthi
Super User


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:

jthi_0-1641290817377.png

 

-Jarmo
NRE_DK
Level I


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?

jthi
Super User


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)
		)
	)
);

jthi_0-1641311676386.png

Do note that these are two separate graph builders

 

-Jarmo
NRE_DK
Level I


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!

Recommended Articles

No recommendations found