cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Submit your abstract to the call for content for Discovery Summit Americas by April 23. Selected abstracts will be presented at Discovery Summit, Oct. 21- 24.
Discovery is online this week, April 16 and 18. Join us for these exciting interactive sessions.
Choose Language Hide Translation Bar
jac865
Level I

Graph Builder: How do I only display categories with values for each group x

here's what i've got:

jac865_0-1585876750021.png

clearly i don't want to display all treatments for each experiment. D and E were not in experiment 1 and A-C were not in experiment 2. how do i display only treatments with values?

-->

treatmentexperimentvalue
A10.97
A10.39
A10.49
A10.44
A10.38
B10.73
B10.72
B11.02
B10.07
B10.09
C10.23
C10.2
C10.1
C10.22
C10.07
D20.29
D20.18
D20.13
D20.57
D20.86
E20.68
E20.34
E20.46
E20.71
E20.5

 

help?

1 REPLY 1
txnelson
Super User

Re: Graph Builder: How do I only display categories with values for each group x

You can get the results by having a 2 level x axis and Overlaying by treatment

double.PNG


Graph Builder(
	Size( 531, 464 ),
	Show Control Panel( 0 ),
	Variables(
		X( :experiment ),
		X( :treatment, Position( 1 ) ),
		Y( :value ),
		Overlay( :treatment )
	),
	Elements( Bar( X( 1 ), X( 2 ), Y, Legend( 13 ) ) )
);
Jim