Hello everybody!
I would like to know how to display graphs horizontally when using a By variable with the graph Builder?
Here is a small example script:
Graph Builder(
Size( 528, 456 ),
Show Control Panel( 0 ),
Variables( X( :weight ), Y( :height ) ),
Elements( Points( X, Y, Legend( 1 ) ), Smoother( X, Y, Legend( 2 ) ) ),
By( :sex )
)
I get the following result:
And I would like to get this:
Any idea of how we could do that?
Thanks in advance!