<?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 How to insert fit y by x using script? in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/How-to-insert-fit-y-by-x-using-script/m-p/524254#M74890</link>
    <description>&lt;P&gt;Hello, i am doing analyze the wafer using script. But eventually, my script only work when i manual plot first fit y by x using this selection. Can i know the script that can run automatically selected fit y by x using that selection?&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Distribution(
	Continuous Distribution(
		Column( :IL_ALL_MAG_C1_S21 ),
		Normal Quantile Plot( 1 )
	),
	SendToReport(
		Dispatch(
			{"IL_ALL_MAG_C1_S21"},
			"",
			Picture Box( 5 ),
			{Set Summary Behavior( "Collapse" )}
		),
		Dispatch(
			{"IL_ALL_MAG_C1_S21"},
			"Distrib Quantile Plot",
			FrameBox,
			{Row Legend(
				IL_ALL_MAG_C1_S21,
				Color( 1 ),
				Color Theme( "Blue to Gray to Red" ),
				Marker( 0 ),
				Marker Theme( "" ),
				Continuous Scale( 0 ),
				Reverse Scale( 0 ),
				Excluded Rows( 0 )
			)}
		)
	)
);

Bivariate( Y( :Y ), X( :X ), Where( :WAFER_ID == ID_Wafer &amp;amp; :SITE_NO == 1 ) );

Bivariate( Y( :Y ), X( :X ), Where( :WAFER_ID == ID_Wafer &amp;amp; :SITE_NO == 2 ) );


&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="mystylelife19_0-1658373155655.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/44168i163C9EF80B0C09F8/image-size/medium?v=v2&amp;amp;px=400" role="button" title="mystylelife19_0-1658373155655.png" alt="mystylelife19_0-1658373155655.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 09 Jun 2023 17:04:55 GMT</pubDate>
    <dc:creator>mystylelife19</dc:creator>
    <dc:date>2023-06-09T17:04:55Z</dc:date>
    <item>
      <title>How to insert fit y by x using script?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-insert-fit-y-by-x-using-script/m-p/524254#M74890</link>
      <description>&lt;P&gt;Hello, i am doing analyze the wafer using script. But eventually, my script only work when i manual plot first fit y by x using this selection. Can i know the script that can run automatically selected fit y by x using that selection?&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Distribution(
	Continuous Distribution(
		Column( :IL_ALL_MAG_C1_S21 ),
		Normal Quantile Plot( 1 )
	),
	SendToReport(
		Dispatch(
			{"IL_ALL_MAG_C1_S21"},
			"",
			Picture Box( 5 ),
			{Set Summary Behavior( "Collapse" )}
		),
		Dispatch(
			{"IL_ALL_MAG_C1_S21"},
			"Distrib Quantile Plot",
			FrameBox,
			{Row Legend(
				IL_ALL_MAG_C1_S21,
				Color( 1 ),
				Color Theme( "Blue to Gray to Red" ),
				Marker( 0 ),
				Marker Theme( "" ),
				Continuous Scale( 0 ),
				Reverse Scale( 0 ),
				Excluded Rows( 0 )
			)}
		)
	)
);

Bivariate( Y( :Y ), X( :X ), Where( :WAFER_ID == ID_Wafer &amp;amp; :SITE_NO == 1 ) );

Bivariate( Y( :Y ), X( :X ), Where( :WAFER_ID == ID_Wafer &amp;amp; :SITE_NO == 2 ) );


&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="mystylelife19_0-1658373155655.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/44168i163C9EF80B0C09F8/image-size/medium?v=v2&amp;amp;px=400" role="button" title="mystylelife19_0-1658373155655.png" alt="mystylelife19_0-1658373155655.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 09 Jun 2023 17:04:55 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-insert-fit-y-by-x-using-script/m-p/524254#M74890</guid>
      <dc:creator>mystylelife19</dc:creator>
      <dc:date>2023-06-09T17:04:55Z</dc:date>
    </item>
    <item>
      <title>Re: How to insert fit y by x using script?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-insert-fit-y-by-x-using-script/m-p/524313#M74898</link>
      <description>&lt;P&gt;If I am understanding what you want, all you have to do is to change&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Bivariate( Y( :Y ), X( :X ), Where( :WAFER_ID == ID_Wafer &amp;amp; :SITE_NO == 1 ) );

Bivariate( Y( :Y ), X( :X ), Where( :WAFER_ID == ID_Wafer &amp;amp; :SITE_NO == 2 ) );&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;to&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Bivariate( Y( :Y ), X( :X ), By( :WAFER_ID, :SITE_NO ) );&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Jul 2022 06:11:09 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-insert-fit-y-by-x-using-script/m-p/524313#M74898</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2022-07-21T06:11:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to insert fit y by x using script?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-insert-fit-y-by-x-using-script/m-p/525025#M74950</link>
      <description>&lt;P&gt;Great it's work for me. Thankyou so much :))&lt;/P&gt;</description>
      <pubDate>Fri, 22 Jul 2022 01:21:36 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-insert-fit-y-by-x-using-script/m-p/525025#M74950</guid>
      <dc:creator>mystylelife19</dc:creator>
      <dc:date>2022-07-22T01:21:36Z</dc:date>
    </item>
  </channel>
</rss>

