<?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: Plotting packed distribution with equal width (Jitter = 0) in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Plotting-packed-distribution-with-equal-width-Jitter-0/m-p/285486#M55096</link>
    <description>&lt;P&gt;Thanks. So, as it seems this is not possible for JMP 15:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here is the proposal for those that are interested:&amp;nbsp;&lt;LI-MESSAGE title="Plotting packed distribution with equal width and no jitter" uid="285466" url="https://community.jmp.com/t5/JMP-Wish-List/Plotting-packed-distribution-with-equal-width-and-no-jitter/m-p/285466#U285466" 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;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 12 Aug 2020 14:50:40 GMT</pubDate>
    <dc:creator>FN</dc:creator>
    <dc:date>2020-08-12T14:50:40Z</dc:date>
    <item>
      <title>Plotting packed distribution with equal width (Jitter = 0)</title>
      <link>https://community.jmp.com/t5/Discussions/Plotting-packed-distribution-with-equal-width-Jitter-0/m-p/285301#M55075</link>
      <description>&lt;P&gt;When using violin plots (density), there is an option to have equal widths per variable.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However, I am unable to plot the dot distribution with the same shape as it does not respect the width of each variable.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="FN_2-1597167975171.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/26179i3445F952F1905D40/image-size/medium?v=v2&amp;amp;px=400" role="button" title="FN_2-1597167975171.png" alt="FN_2-1597167975171.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;// Start of script;
Names Default To Here( 1 );
Clear Log();

dt = Open( "$SAMPLE_DATA/Bands Data.JMP" );

Data Table( "Bands Data" ) &amp;lt;&amp;lt; Stack(
	columns( :proof cut, :viscosity, :blade pressure ),
	Source Label Column( "Label" ),
	Stacked Data Column( "Data" ),
	Drop All Other Columns( 1 )
);

Graph Builder(
	Size( 534, 456 ),
	Show Control Panel( 0 ),
	Variables( X( :Data ), Y( :Label ) ),
	Elements(
		Points( X, Y, Legend( 5 ), Jitter( "Packed" ), Jitter Limit( 0 ) ),
		Contour( X, Y, Legend( 6 ), Violin Scaling( "Equal Width" ) )
	)
)&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;I would like to know how to achieve something like this but for a number of variables.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="FN_1-1597167768642.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/26178i3065CB39429DAF85/image-size/medium?v=v2&amp;amp;px=400" role="button" title="FN_1-1597167768642.png" alt="FN_1-1597167768642.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 11 Jun 2023 11:04:45 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Plotting-packed-distribution-with-equal-width-Jitter-0/m-p/285301#M55075</guid>
      <dc:creator>FN</dc:creator>
      <dc:date>2023-06-11T11:04:45Z</dc:date>
    </item>
    <item>
      <title>Re: Plotting packed distribution with equal width (Jitter = 0)</title>
      <link>https://community.jmp.com/t5/Discussions/Plotting-packed-distribution-with-equal-width-Jitter-0/m-p/285395#M55086</link>
      <description>&lt;P&gt;I like the concept.&amp;nbsp; You should add it to the JMP Wish List&lt;/P&gt;
&lt;P&gt;The closest I could come to the chart you want is by removing the Label variable from the Y axis, and making it a Y Grouping variable.&amp;nbsp; Then I changed the marker size to a dot.&amp;nbsp; Finally I changed the aspect ratio of the chart by stretching it making the display taller.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="violin.PNG" style="width: 622px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/26187iBC6E189D2E3DADCE/image-size/large?v=v2&amp;amp;px=999" role="button" title="violin.PNG" alt="violin.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 11 Aug 2020 22:01:00 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Plotting-packed-distribution-with-equal-width-Jitter-0/m-p/285395#M55086</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2020-08-11T22:01:00Z</dc:date>
    </item>
    <item>
      <title>Re: Plotting packed distribution with equal width (Jitter = 0)</title>
      <link>https://community.jmp.com/t5/Discussions/Plotting-packed-distribution-with-equal-width-Jitter-0/m-p/285486#M55096</link>
      <description>&lt;P&gt;Thanks. So, as it seems this is not possible for JMP 15:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here is the proposal for those that are interested:&amp;nbsp;&lt;LI-MESSAGE title="Plotting packed distribution with equal width and no jitter" uid="285466" url="https://community.jmp.com/t5/JMP-Wish-List/Plotting-packed-distribution-with-equal-width-and-no-jitter/m-p/285466#U285466" 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;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 12 Aug 2020 14:50:40 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Plotting-packed-distribution-with-equal-width-Jitter-0/m-p/285486#M55096</guid>
      <dc:creator>FN</dc:creator>
      <dc:date>2020-08-12T14:50:40Z</dc:date>
    </item>
  </channel>
</rss>

