<?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 Confidence and prediction intervals for orthogonal regression? in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Confidence-and-prediction-intervals-for-orthogonal-regression/m-p/38888#M22738</link>
    <description>&lt;P&gt;I can tell that this question was posted back in 2012, but never answered, so here it goes again:&lt;/P&gt;&lt;P&gt;Is there a way to plot&amp;nbsp;confidence and prediction intervals for &lt;STRONG&gt;orthogonal&lt;/STRONG&gt; regression in the Bivariate platform. Also I would like to save the interval equations. Both options exist for "Fit line", i.e. OLS linear regression.&lt;/P&gt;&lt;P&gt;If the option does not exist, I would like to request it be implementet.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 05 May 2017 08:58:01 GMT</pubDate>
    <dc:creator>JesperJohansen</dc:creator>
    <dc:date>2017-05-05T08:58:01Z</dc:date>
    <item>
      <title>Confidence and prediction intervals for orthogonal regression?</title>
      <link>https://community.jmp.com/t5/Discussions/Confidence-and-prediction-intervals-for-orthogonal-regression/m-p/38888#M22738</link>
      <description>&lt;P&gt;I can tell that this question was posted back in 2012, but never answered, so here it goes again:&lt;/P&gt;&lt;P&gt;Is there a way to plot&amp;nbsp;confidence and prediction intervals for &lt;STRONG&gt;orthogonal&lt;/STRONG&gt; regression in the Bivariate platform. Also I would like to save the interval equations. Both options exist for "Fit line", i.e. OLS linear regression.&lt;/P&gt;&lt;P&gt;If the option does not exist, I would like to request it be implementet.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 05 May 2017 08:58:01 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Confidence-and-prediction-intervals-for-orthogonal-regression/m-p/38888#M22738</guid>
      <dc:creator>JesperJohansen</dc:creator>
      <dc:date>2017-05-05T08:58:01Z</dc:date>
    </item>
    <item>
      <title>Re: Confidence and prediction intervals for orthogonal regression?</title>
      <link>https://community.jmp.com/t5/Discussions/Confidence-and-prediction-intervals-for-orthogonal-regression/m-p/41909#M24447</link>
      <description>&lt;P&gt;Noone from JMP reading this?&lt;/P&gt;</description>
      <pubDate>Thu, 13 Jul 2017 09:22:27 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Confidence-and-prediction-intervals-for-orthogonal-regression/m-p/41909#M24447</guid>
      <dc:creator>JesperJohansen</dc:creator>
      <dc:date>2017-07-13T09:22:27Z</dc:date>
    </item>
    <item>
      <title>Re: Confidence and prediction intervals for orthogonal regression?</title>
      <link>https://community.jmp.com/t5/Discussions/Confidence-and-prediction-intervals-for-orthogonal-regression/m-p/41911#M24449</link>
      <description>&lt;P&gt;With JMP Pro, you could try bootstrapping:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;NamesDefaultToHere(1);

// Sample data
dt = NewTable("Orthogonal Regression",
		NewColumn("x1", Formula(RandomUniform(-1, 1))),
		NewColumn("x2", Formula(RandomUniform(-1, 1))),
		AddRows(50)
);

// Fit orthogonal
fo = dt &amp;lt;&amp;lt; Bivariate(Y( :x2 ), X( :x1 ), Fit Orthogonal( Equal Variances ));

// Bootstrap fitted parameters
dt2 = Report(fo)[TableBox(2)] &amp;lt;&amp;lt; Bootstrap(1000);

// Look at the result
dt2 &amp;lt;&amp;lt; Distribution(
				Continuous Distribution( Column( :Intercept ) ),
				Continuous Distribution( Column( :Slope ) ),
				SendToReport(
					Dispatch( {"Intercept"}, "Quantiles", OutlineBox, {Close( 1 )} ),
					Dispatch( {"Intercept"}, "Summary Statistics", OutlineBox, {Close( 1 )} ),
					Dispatch( {"Slope"}, "Quantiles", OutlineBox, {Close( 1 )} ),
					Dispatch( {"Slope"}, "Summary Statistics", OutlineBox, {Close( 1 )} )
				)
			);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 13 Jul 2017 10:08:08 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Confidence-and-prediction-intervals-for-orthogonal-regression/m-p/41911#M24449</guid>
      <dc:creator>ian_jmp</dc:creator>
      <dc:date>2017-07-13T10:08:08Z</dc:date>
    </item>
    <item>
      <title>Re: Confidence and prediction intervals for orthogonal regression?</title>
      <link>https://community.jmp.com/t5/Discussions/Confidence-and-prediction-intervals-for-orthogonal-regression/m-p/42811#M24822</link>
      <description>Alas, I don't have Pro :'-(</description>
      <pubDate>Thu, 03 Aug 2017 06:50:43 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Confidence-and-prediction-intervals-for-orthogonal-regression/m-p/42811#M24822</guid>
      <dc:creator>JesperJohansen</dc:creator>
      <dc:date>2017-08-03T06:50:43Z</dc:date>
    </item>
    <item>
      <title>Re: Confidence and prediction intervals for orthogonal regression?</title>
      <link>https://community.jmp.com/t5/Discussions/Confidence-and-prediction-intervals-for-orthogonal-regression/m-p/43085#M24964</link>
      <description>&lt;P&gt;Hi Ian,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for this JSL script. However, the script only boostraps estimates of&amp;nbsp;slope and intercept.&amp;nbsp;I was curious how would I then go about estimating prediction interval in deming regression using this output? I would appreciate any assistance.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Aug 2017 19:35:36 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Confidence-and-prediction-intervals-for-orthogonal-regression/m-p/43085#M24964</guid>
      <dc:creator>akrantasiwakoti</dc:creator>
      <dc:date>2017-08-10T19:35:36Z</dc:date>
    </item>
  </channel>
</rss>

