- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Stacked bar chart in graph builder?
Using the Chart function I can easily plot Big Class data as a stacked bar chart:
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Stacked bar chart in graph builder?
Graph Builder( Variables( X( :age ), Overlay( :sex ) ), Elements( Bar( X, Bar Style( "Stacked" ) ) ) );
1 REPLY 1
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Stacked bar chart in graph builder?
Graph Builder( Variables( X( :age ), Overlay( :sex ) ), Elements( Bar( X, Bar Style( "Stacked" ) ) ) );