<?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: overlapping points with Overlay in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/overlapping-points-with-Overlay/m-p/748032#M92809</link>
    <description>&lt;P&gt;the goal: something like this one, but with green &lt;U&gt;&lt;STRONG&gt;triangles&lt;/STRONG&gt; &lt;/U&gt;at position 1-N&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_0-1713469781820.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/63479iDD55E15DF4ED6E15/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_0-1713469781820.png" alt="hogi_0-1713469781820.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 18 Apr 2024 19:50:28 GMT</pubDate>
    <dc:creator>hogi</dc:creator>
    <dc:date>2024-04-18T19:50:28Z</dc:date>
    <item>
      <title>overlapping points with Overlay</title>
      <link>https://community.jmp.com/t5/Discussions/overlapping-points-with-Overlay/m-p/747037#M92661</link>
      <description>&lt;P&gt;I want to use Overlay to get different markers and legend entries for a subset of my data points.&lt;/P&gt;&lt;P&gt;Unfortunately, as soon as I activate Overlay, the points with the special markers overlap with the other points (top graph):&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_7-1713090040574.png" style="width: 246px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/63321i5BCFA0D3AE4BBF91/image-dimensions/246x298?v=v2" width="246" height="298" role="button" title="hogi_7-1713090040574.png" alt="hogi_7-1713090040574.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What is the best way to get:&lt;/P&gt;&lt;P&gt;- the markers&lt;/P&gt;&lt;P&gt;- the legend entries&lt;/P&gt;&lt;P&gt;- non-overlapping, nicely positioned data points&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-SPOILER&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default to Here(1);
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
Graph Builder(
	Transform Column(
		"Custom Binning...[weight]",
		Numeric,
		Nominal,
		Value Labels( {"." = "Missing", 79 = "&amp;lt; 80", 80 = "≥ 80"} ),
		Use Value Labels( 1 ),
		Formula( If( :weight &amp;lt; 80, 79, :weight &amp;gt;= 80, 80, . ) )
	),
	Transform Column(
		"age'",
		Ordinal,
		Set Property( "Configure Levels", 1 ),
		Set Property( "Value Order", {Custom Order( {12, 15} )} ),
		Value Labels( {12 = "12-14", 15 = "15-17"} ),
		Use Value Labels( 1 ),
		Formula(
			Map Value( :age, {13, 12, 14, 12, 16, 15, 17, 15}, Unmatched( :age ) )
		)
	),
	Size( 469, 709 ),
	Show Control Panel( 0 ),
	Summary Statistic( "Median" ),
	Graph Spacing( 4 ),
	Variables(
		X( :sex ),
		Y( :age' ),
		Y( :age' ),
		Overlay( :"Custom Binning...[weight]"n ),
		Color( :height )
	),
	Elements(
		Position( 1, 1 ),
		Points( X, Y, Legend( 16 ), Jitter( "Centered Grid" ) )
	),
	Elements(
		Position( 1, 2 ),
		Points( X, Y, Overlay( 0 ), Legend( 17 ), Jitter( "Centered Grid" ) )
	),
	SendToReport(
		Dispatch( {}, "age'", ScaleBox,
			{Min( -0.5 ), Max( 1.65217391304348 ), Inc( 1 ), Minor Ticks( 0 )}
		),
		Dispatch( {}, "400", ScaleBox,
			{Legend Model(
				16,
				Properties( 1, {Marker Size( 20 )}, Item ID( "&amp;lt; 80", 1 ) ),
				Properties(
					2,
					{Marker( "FilledCircle" ), Marker Size( 20 )},
					Item ID( "≥ 80", 1 )
				),
				Properties( -1, {Marker( "FilledCircle" )}, Item ID( "M", 1 ) ),
				Properties( -1, {Marker Size( 20 )}, Item ID( "age'", 1 ) )
			), Legend Model(
				17,
				Properties( 1, {Marker Size( 20 )}, Item ID( "age'", 1 ) )
			)}
		),
		Dispatch( {}, "Graph Builder", FrameBox,
			{Marker Drawing Mode( "Outlined" )}
		),
		Dispatch( {}, "Graph Builder", FrameBox( 2 ),
			{Marker Drawing Mode( "Outlined" )}
		)
	)
)	&lt;/CODE&gt;&lt;/PRE&gt;&lt;/LI-SPOILER&gt;</description>
      <pubDate>Sun, 14 Apr 2024 10:23:45 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/overlapping-points-with-Overlay/m-p/747037#M92661</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2024-04-14T10:23:45Z</dc:date>
    </item>
    <item>
      <title>Re: overlapping points with Overlay</title>
      <link>https://community.jmp.com/t5/Discussions/overlapping-points-with-Overlay/m-p/748023#M92804</link>
      <description>&lt;P&gt;&lt;FONT color="#333399"&gt;Have you tried working on the "jitter"? There are plenty of options on how to lay out the points.&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#333399"&gt;Default is to "auto" but you can choose a different option. It looks like you are using "Centered Grid" - try "Auto" or "Random Uniform".&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#333399"&gt;You can also move the Jitter Limit bar; the farther to the right, the more space there is in between your points.&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 18 Apr 2024 19:16:46 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/overlapping-points-with-Overlay/m-p/748023#M92804</guid>
      <dc:creator>arawlings</dc:creator>
      <dc:date>2024-04-18T19:16:46Z</dc:date>
    </item>
    <item>
      <title>Re: overlapping points with Overlay</title>
      <link>https://community.jmp.com/t5/Discussions/overlapping-points-with-Overlay/m-p/748032#M92809</link>
      <description>&lt;P&gt;the goal: something like this one, but with green &lt;U&gt;&lt;STRONG&gt;triangles&lt;/STRONG&gt; &lt;/U&gt;at position 1-N&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_0-1713469781820.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/63479iDD55E15DF4ED6E15/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_0-1713469781820.png" alt="hogi_0-1713469781820.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 18 Apr 2024 19:50:28 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/overlapping-points-with-Overlay/m-p/748032#M92809</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2024-04-18T19:50:28Z</dc:date>
    </item>
  </channel>
</rss>

