<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Why is it not possible to generate this graph in JMP? in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Why-is-it-not-possible-to-generate-this-graph-in-JMP/m-p/934452#M109038</link>
    <description>&lt;P&gt;no workaround needed anymore&lt;BR /&gt;once&amp;nbsp;&lt;LI-MESSAGE title="Graph Builder [supports] Overlay by multiple columns" uid="188405" url="https://community.jmp.com/t5/JMP-Wish-List/Graph-Builder-Overlay-by-multiple-columns/m-p/188405#U188405" discussion_style_icon_css="lia-mention-container-editor-message lia-img-icon-idea-thread lia-fa-icon lia-fa-idea lia-fa-thread lia-fa"&gt;&lt;/LI-MESSAGE&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 11 Mar 2026 16:58:26 GMT</pubDate>
    <dc:creator>hogi</dc:creator>
    <dc:date>2026-03-11T16:58:26Z</dc:date>
    <item>
      <title>Why is it not possible to generate this graph in JMP?</title>
      <link>https://community.jmp.com/t5/Discussions/Why-is-it-not-possible-to-generate-this-graph-in-JMP/m-p/918470#M107788</link>
      <description>&lt;P&gt;&lt;SPAN&gt;x axis: (first) Family Car&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;top graph: % of factor by sex&lt;BR /&gt;&lt;/SPAN&gt;bottom graph: % of factor by age&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_0-1765268287557.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/88564iB003519C972CF341/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_0-1765268287557.png" alt="hogi_0-1765268287557.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Semiconductor Industry:&lt;BR /&gt;car = Lot&lt;BR /&gt;age = classification 1&lt;BR /&gt;sex= classification 2&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;The closest I can get without changing the data table:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_1-1765268416804.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/88565iBB01BBDB2969AC0C/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_1-1765268416804.png" alt="hogi_1-1765268416804.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;
Names Default to Here(1);
dt = Open( "$SAMPLE_DATA/Big Class Families.jmp" );
dt &amp;lt;&amp;lt; New Column( "First Family Car",
	Character,
	Formula( Word( 1, :family cars, "," ) )
);
Graph Builder(
	Transform Column( "dummy", Formula( 1 ) ),
	Size( 665, 541 ),
	Show Y Axis Title( 0 ),
	Variables(
		X( :First Family Car ),
		Y( :dummy ),
		Y( :dummy ),
		Overlay( :age ),
		Color( :sex )
	),
	Elements(
		Position( 1, 1 ),
		Bar(
			X,
			Y,
			Legend( 4 ),
			Bar Style( "Stacked" ),
			Summary Statistic( "% of Factor" )
		)
	),
	Elements(
		Position( 1, 2 ),
		Bar(
			X,
			Y,
			Color( 0 ),
			Legend( 3 ),
			Bar Style( "Stacked" ),
			Summary Statistic( "% of Factor" )
		)
	),
	SendToReport(
		Dispatch( {}, "400", ScaleBox,
			{Legend Model(
				4,
				Properties(
					0,
					{Fill Pattern( "left slant heavy" )},
					Item ID( "F", 1 )
				),
				Properties(
					1,
					{Fill Pattern( "left slant heavy b" )},
					Item ID( "M", 1 )
				)
			)}
		)
	)
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 09 Mar 2026 22:50:58 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Why-is-it-not-possible-to-generate-this-graph-in-JMP/m-p/918470#M107788</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2026-03-09T22:50:58Z</dc:date>
    </item>
    <item>
      <title>Re: Why is it not possible to generate this graph in JMP?</title>
      <link>https://community.jmp.com/t5/Discussions/Why-is-it-not-possible-to-generate-this-graph-in-JMP/m-p/918482#M107790</link>
      <description>&lt;P&gt;workaround: &lt;STRONG&gt;stack +&amp;nbsp; Y Group&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_0-1765269431490.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/88567i594C779F018712EF/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_0-1765269431490.png" alt="hogi_0-1765269431490.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Data Table( "Big Class Families" ) &amp;lt;&amp;lt; Stack(
	columns( :age, :sex )
);
Graph Builder(
	Variables( X( :First Family Car ), Group Y( :Label ), Overlay( :Data ) ),
	Elements(
		Bar(
			X,Bar Style( "Stacked" ),
			Summary Statistic( "% of Factor" )
		)
	)
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 12 Mar 2026 13:09:13 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Why-is-it-not-possible-to-generate-this-graph-in-JMP/m-p/918482#M107790</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2026-03-12T13:09:13Z</dc:date>
    </item>
    <item>
      <title>Re: Why is it not possible to generate this graph in JMP?</title>
      <link>https://community.jmp.com/t5/Discussions/Why-is-it-not-possible-to-generate-this-graph-in-JMP/m-p/934452#M109038</link>
      <description>&lt;P&gt;no workaround needed anymore&lt;BR /&gt;once&amp;nbsp;&lt;LI-MESSAGE title="Graph Builder [supports] Overlay by multiple columns" uid="188405" url="https://community.jmp.com/t5/JMP-Wish-List/Graph-Builder-Overlay-by-multiple-columns/m-p/188405#U188405" discussion_style_icon_css="lia-mention-container-editor-message lia-img-icon-idea-thread lia-fa-icon lia-fa-idea lia-fa-thread lia-fa"&gt;&lt;/LI-MESSAGE&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 11 Mar 2026 16:58:26 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Why-is-it-not-possible-to-generate-this-graph-in-JMP/m-p/934452#M109038</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2026-03-11T16:58:26Z</dc:date>
    </item>
  </channel>
</rss>

