cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Instantly extract effect sizes, F-ratios, and FDR-adjusted p-values from your models with the Calculate Effects Sizes extension, available now in the JMP Marketplace!
  • New to JMP? Join us Sept. 23-24 for the Early User Edition of Discovery Summit, tailor-made for new users. Register now for free!
  • See how to use the JMP Marketplace – Free tools to expand JMP capabilities. Register. July 10, 2 pm 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