<?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 Fit Special Limits JSL in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Fit-Special-Limits-JSL/m-p/403784#M65434</link>
    <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am using Fit Y by X Plot and I need 3 limits on my plots (Control Limit, Upper Limit and Lower Limit) where I used the fit special 3 times and input the slope and intercept needed. But I don't know how to do this in JSL. This is only the output I get when I save the script to script window&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Bivariate(
	Y( :Age ),
	X( :Sex ),
	Fit Line( {Confid Curves Indiv( 1 ), Line Color( "Black" )} ),
	Fit Line( {Line Color( {196, 189, 43} )} ),
	Fit Line( {Line Color( {39, 174, 174} )} ),
	SendToReport(
		Dispatch(
			{},
			"Bivar Plot",
			FrameBox,
			{DispatchSeg( Line Seg( 1 ), {Line Color( "Black" )} ),
			DispatchSeg( Line Seg( 4 ), {Line Color( "Black" )} ),
			DispatchSeg( Line Seg( 5 ), {Line Color( "Black" )} ),
			Row Legend(
				Blade Type,
				Color( 1 ),
				Color Theme( "JMP Default" ),
				Marker( 0 ),
				Marker Theme( "" ),
				Continuous Scale( 0 ),
				Reverse Scale( 0 ),
				Excluded Rows( 0 )
			)}
		),
		Dispatch( {}, "Linear Fit", OutlineBox, {Close( 1 )} ),
		Dispatch( {}, "Linear Fit", Outline Box( 2 ), {Close( 1 )} ),
		Dispatch( {}, "Linear Fit", Outline Box( 3 ), {Close( 1 )} )
	)
);&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Is there any way I can input or customize the intercept and slope values using JSL?&lt;/P&gt;</description>
    <pubDate>Sat, 10 Jun 2023 20:46:07 GMT</pubDate>
    <dc:creator>29755</dc:creator>
    <dc:date>2023-06-10T20:46:07Z</dc:date>
    <item>
      <title>Fit Special Limits JSL</title>
      <link>https://community.jmp.com/t5/Discussions/Fit-Special-Limits-JSL/m-p/403784#M65434</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am using Fit Y by X Plot and I need 3 limits on my plots (Control Limit, Upper Limit and Lower Limit) where I used the fit special 3 times and input the slope and intercept needed. But I don't know how to do this in JSL. This is only the output I get when I save the script to script window&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Bivariate(
	Y( :Age ),
	X( :Sex ),
	Fit Line( {Confid Curves Indiv( 1 ), Line Color( "Black" )} ),
	Fit Line( {Line Color( {196, 189, 43} )} ),
	Fit Line( {Line Color( {39, 174, 174} )} ),
	SendToReport(
		Dispatch(
			{},
			"Bivar Plot",
			FrameBox,
			{DispatchSeg( Line Seg( 1 ), {Line Color( "Black" )} ),
			DispatchSeg( Line Seg( 4 ), {Line Color( "Black" )} ),
			DispatchSeg( Line Seg( 5 ), {Line Color( "Black" )} ),
			Row Legend(
				Blade Type,
				Color( 1 ),
				Color Theme( "JMP Default" ),
				Marker( 0 ),
				Marker Theme( "" ),
				Continuous Scale( 0 ),
				Reverse Scale( 0 ),
				Excluded Rows( 0 )
			)}
		),
		Dispatch( {}, "Linear Fit", OutlineBox, {Close( 1 )} ),
		Dispatch( {}, "Linear Fit", Outline Box( 2 ), {Close( 1 )} ),
		Dispatch( {}, "Linear Fit", Outline Box( 3 ), {Close( 1 )} )
	)
);&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Is there any way I can input or customize the intercept and slope values using JSL?&lt;/P&gt;</description>
      <pubDate>Sat, 10 Jun 2023 20:46:07 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Fit-Special-Limits-JSL/m-p/403784#M65434</guid>
      <dc:creator>29755</dc:creator>
      <dc:date>2023-06-10T20:46:07Z</dc:date>
    </item>
    <item>
      <title>Re: Fit Special Limits JSL</title>
      <link>https://community.jmp.com/t5/Discussions/Fit-Special-Limits-JSL/m-p/403791#M65435</link>
      <description>&lt;P&gt;Here is a saved script using JMP 16, after setting one of the Fits to a Fit Special.&amp;nbsp; It shows how to specify the required JSL&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;names default to here(1);
dt=open("$sample_data/big class.jmp");
Bivariate(
	Y( :Age ),
	X( :height ),
	Fit Line( {Confid Curves Indiv( 1 ), Line Color( "Black" )} ),
	Fit Special( Intercept( 0 ), Slope( 1 ), {Line Color( {212, 73, 88} )} ),
	Fit Line( {Line Color( {39, 174, 174} )} ),
	SendToReport(
		Dispatch(
			{},
			"Bivar Plot",
			FrameBox,
			{DispatchSeg( Line Seg( 1 ), {Line Color( "Black" )} ),
			DispatchSeg( Line Seg( 4 ), {Line Color( "Black" )} ),
			DispatchSeg( Line Seg( 5 ), {Line Color( "Black" )} ),
			Row Legend(
				Blade Type,
				Color( 1 ),
				Color Theme( "JMP Default" ),
				Marker( 0 ),
				Marker Theme( "" ),
				Continuous Scale( 0 ),
				Reverse Scale( 0 ),
				Excluded Rows( 0 )
			)}
		),
		Dispatch( {}, "Linear Fit", OutlineBox, {Close( 1 )} ),
		Dispatch( {}, "Linear Fit", Outline Box( 2 ), {Close( 1 )} ),
		Dispatch( {}, "Linear Fit", Outline Box( 3 ), {Close( 1 )} )
	)
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 26 Jul 2021 04:38:37 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Fit-Special-Limits-JSL/m-p/403791#M65435</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2021-07-26T04:38:37Z</dc:date>
    </item>
  </channel>
</rss>

