<?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 compare two method results? in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-compare-two-method-results/m-p/848425#M42025</link>
    <description>You need to have the raw data that went into the computation of the statistics and then use that data with an appropriate procedure depending on what aspect of the group distributions you want to compare. If you want to compare a location measure computed for the groups (such as mean or median), then you could use the Kruskal-Wallis test in PROC NPAR1WAY which doesn't require that the raw values have a particular distribution like the normal distribution. See the examples in the NPAR1WAY documentation. If you want to compare something other than a location measure, then be specific about what you want.</description>
    <pubDate>Wed, 07 Dec 2022 21:25:43 GMT</pubDate>
    <dc:creator>StatDave</dc:creator>
    <dc:date>2022-12-07T21:25:43Z</dc:date>
    <item>
      <title>How to compare two method results?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-compare-two-method-results/m-p/848414#M42023</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;I used two different methods to get two different results in the subgroups. I would like to compare whether these two methods are the same in each group (ATR/FYH/YRU/TRG).&amp;nbsp; The Method_1 and Method_2 values in the sample dataset could be referred to as any statical value, (mean, sum, etc.) Please guild me to approach it; thanks.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data Sensitivity;
   infile datalines dsd;
   input Sub_Group : $10.  Method_1 Method_2;
   datalines;
   ATR,   ,  261483.06,
   FYH, 732878.49, 762531.35, 
   YRU, 323238.54, 49796.91,
   TRG, 404592.55, 329885.45
;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 07 Dec 2022 20:23:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-compare-two-method-results/m-p/848414#M42023</guid>
      <dc:creator>ybz12003</dc:creator>
      <dc:date>2022-12-07T20:23:12Z</dc:date>
    </item>
    <item>
      <title>Re: How to compare two method results?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-compare-two-method-results/m-p/848425#M42025</link>
      <description>You need to have the raw data that went into the computation of the statistics and then use that data with an appropriate procedure depending on what aspect of the group distributions you want to compare. If you want to compare a location measure computed for the groups (such as mean or median), then you could use the Kruskal-Wallis test in PROC NPAR1WAY which doesn't require that the raw values have a particular distribution like the normal distribution. See the examples in the NPAR1WAY documentation. If you want to compare something other than a location measure, then be specific about what you want.</description>
      <pubDate>Wed, 07 Dec 2022 21:25:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-compare-two-method-results/m-p/848425#M42025</guid>
      <dc:creator>StatDave</dc:creator>
      <dc:date>2022-12-07T21:25:43Z</dc:date>
    </item>
    <item>
      <title>Re: How to compare two method results?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-compare-two-method-results/m-p/848435#M42026</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/67134"&gt;@ybz12003&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;I used two different methods to get two different results in the subgroups. I would like to compare whether these two methods are the same in each group (ATR/FYH/YRU/TRG).&amp;nbsp; The Method_1 and Method_2 values in the sample dataset could be referred to as any statical value, (mean, sum, etc.) Please guild me to approach it; thanks.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data Sensitivity;
   infile datalines dsd;
   input Sub_Group : $10.  Method_1 Method_2;
   datalines;
   ATR,   ,  261483.06,
   FYH, 732878.49, 762531.35, 
   YRU, 323238.54, 49796.91,
   TRG, 404592.55, 329885.45
;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;The type of "statistic" would likely be critical to making any defendable "comparison".&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Example for wanting to compare sums:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;One record with FYH method_1 value = 732878.49&lt;/P&gt;
&lt;P&gt;Several thousand records for FYH method_2 with the sum happening to be 732878.49. What sort of comparison seems valuable? Identical sum but what does that actually tell you about what the source data looks like?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Pick a value for a mean. I can generate multiple collections of values that have the same mean but the likely would not make much sense to compare to the given value you pick.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;One suspects that you not providing much of the detail here. Going directly to comparing final summary statistics with some other information is likely not a very reliable approach.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Two sets of data consisting of observations, especially if each method has similar or identical inputs, is a completely different story. Then you can test for identity/similarity of means and dispersion.&lt;/P&gt;</description>
      <pubDate>Wed, 07 Dec 2022 22:10:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-compare-two-method-results/m-p/848435#M42026</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2022-12-07T22:10:50Z</dc:date>
    </item>
  </channel>
</rss>

