<?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: How to test difference in two methods? in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-test-difference-in-two-methods/m-p/333681#M17624</link>
    <description>Hi, thanks for the reply.&lt;BR /&gt;&lt;BR /&gt;I am tempted to do the proc univariate on the diff (is it the simple subtraction of the two, right?, no squaring of the mean diff etc!!!!).&lt;BR /&gt;&lt;BR /&gt;Your suggestions are appreciated.&lt;BR /&gt;&lt;BR /&gt;Thanks again&lt;BR /&gt;</description>
    <pubDate>Fri, 17 Feb 2017 05:35:46 GMT</pubDate>
    <dc:creator>fridge_wpg</dc:creator>
    <dc:date>2017-02-17T05:35:46Z</dc:date>
    <item>
      <title>How to test difference in two methods?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-test-difference-in-two-methods/m-p/333660#M17620</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a regression coefficient &lt;SPAN&gt;(y=1.11*x)&lt;/SPAN&gt; of a regression model: &lt;SPAN&gt;KM % = 1.11*TEMR. In another independent data set say Set A, I have TEMR readings from the same instrument as well as KM% of 120 samples. Now if in the Set A, I first multiple TEMRx1.11 to get a variable say TEMR_modified and then like to test whether TEMR_modified would be any different from the KM% of the Set A?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;What would be my options, please?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I first thought of treating TEMR_modified and Km% (both have N120) as two groups and run a two sample ttest, but don’t know if it would be valid (as I notice some occasional variation in both groups for respective readings). &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Please, advise and if possible with a sas&amp;nbsp;code, thank you all&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 17 Feb 2017 02:12:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-test-difference-in-two-methods/m-p/333660#M17620</guid>
      <dc:creator>fridge_wpg</dc:creator>
      <dc:date>2017-02-17T02:12:03Z</dc:date>
    </item>
    <item>
      <title>Re: How to test difference in two methods?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-test-difference-in-two-methods/m-p/333669#M17621</link>
      <description>&lt;P&gt;You can check that your new data supports (does not disagree&amp;nbsp;with) the hypothesis that TEMR = 1.11 KM with proc REG:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc reg data=A;
model TEMR = KM / noint;
test KM = 1.11;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 17 Feb 2017 03:29:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-test-difference-in-two-methods/m-p/333669#M17621</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2017-02-17T03:29:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to test difference in two methods?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-test-difference-in-two-methods/m-p/333674#M17622</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you very much for your suggestion. I ran the code "test = km 1.11" &amp;nbsp;the particular&amp;nbsp;SAS Output is:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class="branch"&gt;&lt;DIV&gt;&lt;DIV align="center"&gt;Test 1 Results for Dependent Variable KM Source DF Mean&lt;BR /&gt;Square F Value Pr&amp;nbsp;&amp;gt;&amp;nbsp;F Numerator Denominator &lt;TABLE cellspacing="0" cellpadding="5"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;20.14595&lt;/TD&gt;&lt;TD&gt;0.33&lt;/TD&gt;&lt;TD&gt;0.5661&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;237&lt;/TD&gt;&lt;TD&gt;61.00256&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I guess the default null hypothesis for the test=1.11 would be that the "new regression model's coefficient (TEMR=KM)" is no different than 1.11?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So, what about the question I asked in my original post, how to test that &amp;nbsp;"TEMR_modified is no different than KM%". Or the above test is sufficient? please. Thank you again&lt;/P&gt;&lt;DIV class="branch"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="branch"&gt;&amp;nbsp;&lt;/DIV&gt;</description>
      <pubDate>Fri, 17 Feb 2017 04:26:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-test-difference-in-two-methods/m-p/333674#M17622</guid>
      <dc:creator>fridge_wpg</dc:creator>
      <dc:date>2017-02-17T04:26:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to test difference in two methods?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-test-difference-in-two-methods/m-p/333677#M17623</link>
      <description>&lt;P&gt;A 2 sample test might not have much power, depending on the range covered by km.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You could run a paired t-test of temr_modified and km. Or simply run proc univariate on diff = temr_modified - km.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you have the original data that yielded the regression slope estimate of 1.11, you could also test that the original data and the new data yield the same slope.&lt;/P&gt;</description>
      <pubDate>Fri, 17 Feb 2017 04:58:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-test-difference-in-two-methods/m-p/333677#M17623</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2017-02-17T04:58:50Z</dc:date>
    </item>
    <item>
      <title>Re: How to test difference in two methods?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-test-difference-in-two-methods/m-p/333681#M17624</link>
      <description>Hi, thanks for the reply.&lt;BR /&gt;&lt;BR /&gt;I am tempted to do the proc univariate on the diff (is it the simple subtraction of the two, right?, no squaring of the mean diff etc!!!!).&lt;BR /&gt;&lt;BR /&gt;Your suggestions are appreciated.&lt;BR /&gt;&lt;BR /&gt;Thanks again&lt;BR /&gt;</description>
      <pubDate>Fri, 17 Feb 2017 05:35:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-test-difference-in-two-methods/m-p/333681#M17624</guid>
      <dc:creator>fridge_wpg</dc:creator>
      <dc:date>2017-02-17T05:35:46Z</dc:date>
    </item>
  </channel>
</rss>

