<?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: Graph builder box plot creates duplicate data points in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Graph-builder-box-plot-creates-duplicate-data-points/m-p/809258#M98902</link>
    <description>&lt;P&gt;In case of jitter=auto, the data points simply overlap right?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sadly I much prefer the "jitter=random uniform" aesthetics of the graphs.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I will contact JMP support regarding this issue.&lt;/P&gt;</description>
    <pubDate>Wed, 30 Oct 2024 10:39:54 GMT</pubDate>
    <dc:creator>mvanderaa1</dc:creator>
    <dc:date>2024-10-30T10:39:54Z</dc:date>
    <item>
      <title>Graph builder box plot creates duplicate data points</title>
      <link>https://community.jmp.com/t5/Discussions/Graph-builder-box-plot-creates-duplicate-data-points/m-p/809249#M98895</link>
      <description>&lt;P&gt;I am trying to achieve a box plot graph where the confidence diamond and data points are shown in black, with the boxes itself using the color based on a column value. Additionally, I would like to show the raw data points with a jitter.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am using a work-around suggested to me in a previous post:&lt;/P&gt;&lt;P&gt;&lt;A title="reference_question" href="https://community.jmp.com/t5/Discussions/How-to-change-all-box-plot-confidence-diamonds-colors-in-graph/td-p/482731" target="_self"&gt;How-to-change-all-box-plot-confidence-diamonds-colors-in-graph&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;That solution uses two multiple box plots on top of each other to allow for a different color for the box plot and its confidence diamond.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It mostly works, but the problem I still face is that potential outliers are now showing as two separate data points.&lt;/P&gt;&lt;P&gt;an example using big class.jmp&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="mvanderaa1_0-1730279321788.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/69663i09EF540748BF1B81/image-size/medium?v=v2&amp;amp;px=400" role="button" title="mvanderaa1_0-1730279321788.png" alt="mvanderaa1_0-1730279321788.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;the code for this graph:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Graph Builder(
	Size( 1845, 897 ),
	Show Control Panel( 0 ),
	Variables( Y( :weight ), Group X( :sex ), Color( :sex ) ),
	Elements(
		Box Plot( Y, Legend( 7 ), Box Style( "Solid" ), Fences( 0 ) ),
		Points(
			Y,
			Color( 0 ),
			Legend( 6 ),
			Jitter( "Random Uniform" ),
			Jitter Limit( 0.3179 )
		),
		Box Plot( Y, Color( 0 ), Legend( 8 ), Confidence Diamond( 1 ) ),
		Bar( Y, Legend( 9 ), Bar Style( "Float" ), Label( "Label by Value" ) )
	),
	SendToReport(
		Dispatch( {}, "400", LegendBox,
			{Legend Position(
				{7, [-1, 0, 1, -3], 6, [-1], 8, [-3, -3], 9, [-3, -3]}
			)}
		)
	)
);&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Is there a way to achieve this? I suppose it requires not drawing the box plot potential outlier, but I can imagine this is hard to do.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 30 Oct 2024 09:25:02 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Graph-builder-box-plot-creates-duplicate-data-points/m-p/809249#M98895</guid>
      <dc:creator>mvanderaa1</dc:creator>
      <dc:date>2024-10-30T09:25:02Z</dc:date>
    </item>
    <item>
      <title>Re: Graph builder box plot creates duplicate data points</title>
      <link>https://community.jmp.com/t5/Discussions/Graph-builder-box-plot-creates-duplicate-data-points/m-p/809256#M98901</link>
      <description>&lt;P&gt;The Jitter setting of "Random Uniform" appears to be the issue.&amp;nbsp; Change the setting to "Auto" and the jittering is there and without duplicate data points.&amp;nbsp; You need to contact JMP Support and put in the issue.&amp;nbsp; It seems to be a real Bug.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="txnelson_0-1730282965846.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/69664i2544D40497FEAE21/image-size/medium?v=v2&amp;amp;px=400" role="button" title="txnelson_0-1730282965846.png" alt="txnelson_0-1730282965846.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = 
// Open Data Table: Big Class.jmp
// → Data Table( "Big Class" )
Open( "$SAMPLE_DATA/Big Class.jmp" );

Graph Builder(
	Size( 1845, 897 ),
	Show Control Panel( 0 ),
	Variables( Y( :weight ), Group X( :sex ), Color( :sex ) ),
	Elements(
		Box Plot( Y, Legend( 7 ), Box Style( "Solid" ), Fences( 0 ) ),
		Points(
			Y,
			Color( 0 ),
			Legend( 6 ),
			Jitter( "Auto" ),
			Jitter Limit( 0.3179 )
		),
		Box Plot( Y, Color( 0 ), Legend( 8 ), Confidence Diamond( 1 ) ),
		Bar( Y, Legend( 9 ), Bar Style( "Float" ), Label( "Label by Value" ) )
	),
	SendToReport(
		Dispatch( {}, "400", LegendBox,
			{Legend Position(
				{7, [-1, 0, 1, -3], 6, [-1], 8, [-3, -3], 9, [-3, -3]}
			)}
		)
	)
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 30 Oct 2024 10:15:27 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Graph-builder-box-plot-creates-duplicate-data-points/m-p/809256#M98901</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2024-10-30T10:15:27Z</dc:date>
    </item>
    <item>
      <title>Re: Graph builder box plot creates duplicate data points</title>
      <link>https://community.jmp.com/t5/Discussions/Graph-builder-box-plot-creates-duplicate-data-points/m-p/809258#M98902</link>
      <description>&lt;P&gt;In case of jitter=auto, the data points simply overlap right?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sadly I much prefer the "jitter=random uniform" aesthetics of the graphs.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I will contact JMP support regarding this issue.&lt;/P&gt;</description>
      <pubDate>Wed, 30 Oct 2024 10:39:54 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Graph-builder-box-plot-creates-duplicate-data-points/m-p/809258#M98902</guid>
      <dc:creator>mvanderaa1</dc:creator>
      <dc:date>2024-10-30T10:39:54Z</dc:date>
    </item>
  </channel>
</rss>

