<?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: Graphing a radial spec limit on an XY scatter plot in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Graphing-a-radial-spec-limit-on-an-XY-scatter-plot/m-p/556859#M77068</link>
    <description>&lt;P&gt;In the scripting index it describes it pretty easily.&amp;nbsp; But Here's a script.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can easily do this in the UI as well if your right click on the framebox and copy that same script into Customize&amp;gt;&amp;gt;"Add Graphics Script"&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.jmp");
summarize(dt 
	, mean_x = Mean(:weight)
	, mean_y = Mean(:height)
);
biv = Bivariate( Y( :height ), X( :weight ) );
report(biv)[Framebox(1)] &amp;lt;&amp;lt; Add Graphics Script(
	PenColor("Blue");
	Circle(
		{mean_x, mean_y}, 
		2, 
	);
	
	PenColor("Red");
	Circle( 
		{mean_x, mean_y}, 
		10
	)
);

&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Mon, 17 Oct 2022 08:01:37 GMT</pubDate>
    <dc:creator>vince_faller</dc:creator>
    <dc:date>2022-10-17T08:01:37Z</dc:date>
    <item>
      <title>Graphing a radial spec limit on an XY scatter plot</title>
      <link>https://community.jmp.com/t5/Discussions/Graphing-a-radial-spec-limit-on-an-XY-scatter-plot/m-p/556816#M77065</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hello -&lt;/P&gt;&lt;P&gt;Many processes that require alignment use the standard GDT circular position tolerance instead of a rectangular tolerance. So we will frequently have alignment tolerances that are, for example, a 100 micron radius and not +/-100 microns. The best way to look at this data is an XY scatter plot with a radial spec limit. Instead of a spec limit square with a separate X and Y spec, you have a spec represented by a circle. This way you can see if your alignment is off in X or Y (and which direction), and visually see how close you are to the spec.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I gave up trying to make that circle in JMP8 and never thought about it again. But someone asked me this question today after I gave a training session. I don't know of anything in JMP16 (or JMP17EA) that makes this easy to do, so coming to the community. The trick is that the radial spec affects two columns.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there an easy way to do this now or do I have to use JSL to draw a circle?&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;/P&gt;&lt;P&gt;jay&lt;/P&gt;&lt;P&gt;JMP16/17EA&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 11 Jun 2023 11:28:32 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Graphing-a-radial-spec-limit-on-an-XY-scatter-plot/m-p/556816#M77065</guid>
      <dc:creator>jay_holavarri</dc:creator>
      <dc:date>2023-06-11T11:28:32Z</dc:date>
    </item>
    <item>
      <title>Re: Graphing a radial spec limit on an XY scatter plot</title>
      <link>https://community.jmp.com/t5/Discussions/Graphing-a-radial-spec-limit-on-an-XY-scatter-plot/m-p/556859#M77068</link>
      <description>&lt;P&gt;In the scripting index it describes it pretty easily.&amp;nbsp; But Here's a script.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can easily do this in the UI as well if your right click on the framebox and copy that same script into Customize&amp;gt;&amp;gt;"Add Graphics Script"&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.jmp");
summarize(dt 
	, mean_x = Mean(:weight)
	, mean_y = Mean(:height)
);
biv = Bivariate( Y( :height ), X( :weight ) );
report(biv)[Framebox(1)] &amp;lt;&amp;lt; Add Graphics Script(
	PenColor("Blue");
	Circle(
		{mean_x, mean_y}, 
		2, 
	);
	
	PenColor("Red");
	Circle( 
		{mean_x, mean_y}, 
		10
	)
);

&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 17 Oct 2022 08:01:37 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Graphing-a-radial-spec-limit-on-an-XY-scatter-plot/m-p/556859#M77068</guid>
      <dc:creator>vince_faller</dc:creator>
      <dc:date>2022-10-17T08:01:37Z</dc:date>
    </item>
    <item>
      <title>Re: Graphing a radial spec limit on an XY scatter plot</title>
      <link>https://community.jmp.com/t5/Discussions/Graphing-a-radial-spec-limit-on-an-XY-scatter-plot/m-p/561614#M77471</link>
      <description>&lt;P&gt;&amp;nbsp;Thank you for this -- I grumbled about having to use JSL (not for me, but for explaining to users). But it doesn't get much simpler than this after right-clicking in a chart and selecting Customize :&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Pen Color(Blue);&lt;BR /&gt;Circle({0,0},60);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Fri, 28 Oct 2022 08:16:33 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Graphing-a-radial-spec-limit-on-an-XY-scatter-plot/m-p/561614#M77471</guid>
      <dc:creator>jay_holavarri</dc:creator>
      <dc:date>2022-10-28T08:16:33Z</dc:date>
    </item>
  </channel>
</rss>

