cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Learn how to build custom Python data connectors and further customize JMP’s Data Connector Framework with the Python Data Connector Demo, available now in the JMP Marketplace!
  • See how to create experiments to support product design and ID useful product features. Register for June 12 webinar, 2pm US Eastern Time.

Discussions

Solve problems, and share tips and tricks with other JMP users.
Choose Language Hide Translation Bar
jeff3928
Level III

Stacked bar chart in graph builder?

Using the Chart function I can easily plot Big Class data as a stacked bar chart:
7908_Picture2.png

Chart( X( :age, :sex ), Y( N ), Stack Bars( 1 ), Bar Chart( 1 ) )

What script would build the equivalent chart using graph builder? I ask because the chart tool is limited to only 2 X Levels and I have another data set with 3 X levels that I need to plot in a similar fashion so I must use graph builder. Thanks!

1 ACCEPTED SOLUTION

Accepted Solutions
ms
Super User (Alumni) ms
Super User (Alumni)

Re: Stacked bar chart in graph builder?

Graph Builder( Variables( X( :age ), Overlay( :sex ) ), Elements( Bar( X, Bar Style( "Stacked" ) ) ) );

View solution in original post

1 REPLY 1
ms
Super User (Alumni) ms
Super User (Alumni)

Re: Stacked bar chart in graph builder?

Graph Builder( Variables( X( :age ), Overlay( :sex ) ), Elements( Bar( X, Bar Style( "Stacked" ) ) ) );

Recommended Articles