<?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: Cell plot question in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Cell-plot-question/m-p/680275#M86620</link>
    <description>&lt;P&gt;I guess yes. Try &lt;STRONG&gt;Bar&lt;/STRONG&gt; chart with style &lt;STRONG&gt;Stacked&lt;/STRONG&gt; and summary Statistics "&lt;STRONG&gt;% of factor&lt;/STRONG&gt;".&lt;BR /&gt;(I hope the options were available in Jmp 14 ...)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_0-1695328682657.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/56875i95DF160553070E57/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_0-1695328682657.png" alt="hogi_0-1695328682657.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;Open( "$SAMPLE_DATA/Smartphone OS.jmp" );

Graph Builder(
	Variables(
		X( :Year ),
		Y( :Market Share ),
		Overlay( :Operating System ),
		Frequency( :Market Share )
	),
	Elements(
		Bar(
			X,
			Y,
			Legend( 11 ),
			Bar Style( "Stacked" ),
			Summary Statistic( "% of Factor" )
		)
	)
)&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Thu, 21 Sep 2023 20:38:55 GMT</pubDate>
    <dc:creator>hogi</dc:creator>
    <dc:date>2023-09-21T20:38:55Z</dc:date>
    <item>
      <title>Cell plot question</title>
      <link>https://community.jmp.com/t5/Discussions/Cell-plot-question/m-p/680263#M86619</link>
      <description>&lt;P&gt;Is it possible to create something like this plot in JMP? i.e. categorical data sorted by "patient", WITH a percentage bar...I tried various options in cell plot and legacy chart modules without much success. I am using JMP Pro 14.3.0.TIA!!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="belikin23_0-1695325892581.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/56873i83C274FDCD7F91A9/image-size/medium?v=v2&amp;amp;px=400" role="button" title="belikin23_0-1695325892581.png" alt="belikin23_0-1695325892581.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Sep 2023 19:55:09 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Cell-plot-question/m-p/680263#M86619</guid>
      <dc:creator>belikin23</dc:creator>
      <dc:date>2023-09-21T19:55:09Z</dc:date>
    </item>
    <item>
      <title>Re: Cell plot question</title>
      <link>https://community.jmp.com/t5/Discussions/Cell-plot-question/m-p/680275#M86620</link>
      <description>&lt;P&gt;I guess yes. Try &lt;STRONG&gt;Bar&lt;/STRONG&gt; chart with style &lt;STRONG&gt;Stacked&lt;/STRONG&gt; and summary Statistics "&lt;STRONG&gt;% of factor&lt;/STRONG&gt;".&lt;BR /&gt;(I hope the options were available in Jmp 14 ...)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_0-1695328682657.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/56875i95DF160553070E57/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_0-1695328682657.png" alt="hogi_0-1695328682657.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;Open( "$SAMPLE_DATA/Smartphone OS.jmp" );

Graph Builder(
	Variables(
		X( :Year ),
		Y( :Market Share ),
		Overlay( :Operating System ),
		Frequency( :Market Share )
	),
	Elements(
		Bar(
			X,
			Y,
			Legend( 11 ),
			Bar Style( "Stacked" ),
			Summary Statistic( "% of Factor" )
		)
	)
)&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 21 Sep 2023 20:38:55 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Cell-plot-question/m-p/680275#M86620</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2023-09-21T20:38:55Z</dc:date>
    </item>
    <item>
      <title>Re: Cell plot question</title>
      <link>https://community.jmp.com/t5/Discussions/Cell-plot-question/m-p/680308#M86622</link>
      <description>&lt;P&gt;JMP 14 does not have % of Factor option.&amp;nbsp; However, you can still create the graph in JMP 14 by creating a new Column which represents the percent of the overlay group of the X group.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt &amp;lt;&amp;lt; New Column( "% of Factor",
	formula(
		Col Sum( :height, :age, :sex ) / Col Sum( :height, :age )
	),
	format( "Percent", 7, 1)
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="txnelson_0-1695334829535.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/56879i389EB3044151B33F/image-size/medium?v=v2&amp;amp;px=400" role="button" title="txnelson_0-1695334829535.png" alt="txnelson_0-1695334829535.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );

dt = Open( "$SAMPLE_DATA/Big Class.jmp" );

dt &amp;lt;&amp;lt; New Column( "% of Factor",
	formula(
		Col Sum( :height, :age, :sex ) / Col Sum( :height, :age )
	),
	format( "Percent", 7, 1)
);

dt = Graph Builder(
	Variables(
		X( :age ),
		Y( :Name( "% of Factor" ) ),
		Overlay( :sex )
	),
	Elements( Bar( X, Y, Legend( 9 ), Bar Style( "Stacked" ) ) )
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 21 Sep 2023 22:21:00 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Cell-plot-question/m-p/680308#M86622</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2023-09-21T22:21:00Z</dc:date>
    </item>
  </channel>
</rss>

