<?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 Trying to calculate AC1 statistic for multiple raters in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Trying-to-calculate-AC1-statistic-for-multiple-raters/m-p/558799#M27733</link>
    <description>&lt;P&gt;Hello! &amp;nbsp;I am trying to calculate Gwet's AC1 statistic for multiple raters applying a scoring tool to multiple articles in a review. &amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have been able to do a calculation for 2 raters using the example data and code below (2 RATER CODE). &amp;nbsp;In this example, there were 31 instances where two raters both scored an article a 6, two instances where they both scored an article a 5, two instances where Rater1 scored an article a 6 and Rater2 scored it a 5, and so on...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However, I also have data from testing this tool where there were multiple raters (n = 6 or &lt;span class="lia-unicode-emoji" title=":smiling_face_with_sunglasses:"&gt;😎&lt;/span&gt; scoring 4- 8 articles. &amp;nbsp;I have not been able to figure out how to code for the multiple raters in SAS. &amp;nbsp;I have included an example of what this data may look like below under "DATA FOR 6 RATERS". &amp;nbsp;When I try to use the same code for the agreement statistics for 2 raters (e.g. raterxx*rateryy*raterzz) it does not work. &amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help would be much appreciated! &amp;nbsp;Thanks!!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;DATA/CODE FOR 2 RATERS:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;data dataset;&lt;BR /&gt;input Rater1 Rater2 Count;&lt;BR /&gt;datalines;&lt;BR /&gt;6 6 31&lt;BR /&gt;5 5 2&lt;BR /&gt;6 5 2&lt;BR /&gt;6 4 1&lt;/P&gt;&lt;P&gt;4 5 1&lt;BR /&gt;;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;data dataset2;&lt;BR /&gt;set dataset;&lt;BR /&gt;wgt = count;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc freq data=dataset2;&lt;BR /&gt;weight wgt / zeros;&lt;BR /&gt;test kappa;&lt;BR /&gt;tables rater1*rater2 / agree(AC1) nocol norow nopercent plots=agreeplot;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;DATA FOR 6 RATERS:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;data dataset;&lt;BR /&gt;input Rater1 Rater2 Rater3 Rater4 Rater5 Rater6 Count;&lt;BR /&gt;datalines;&lt;BR /&gt;6 6 5 4 5 5 1&amp;nbsp;&lt;BR /&gt;5 5 5 5 4 4 1&lt;BR /&gt;5 5 5 5 5 5 1&lt;BR /&gt;6 4 6 6 5 5 1&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 15 May 2019 02:30:09 GMT</pubDate>
    <dc:creator>CV9</dc:creator>
    <dc:date>2019-05-15T02:30:09Z</dc:date>
    <item>
      <title>Trying to calculate AC1 statistic for multiple raters</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Trying-to-calculate-AC1-statistic-for-multiple-raters/m-p/558799#M27733</link>
      <description>&lt;P&gt;Hello! &amp;nbsp;I am trying to calculate Gwet's AC1 statistic for multiple raters applying a scoring tool to multiple articles in a review. &amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have been able to do a calculation for 2 raters using the example data and code below (2 RATER CODE). &amp;nbsp;In this example, there were 31 instances where two raters both scored an article a 6, two instances where they both scored an article a 5, two instances where Rater1 scored an article a 6 and Rater2 scored it a 5, and so on...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However, I also have data from testing this tool where there were multiple raters (n = 6 or &lt;span class="lia-unicode-emoji" title=":smiling_face_with_sunglasses:"&gt;😎&lt;/span&gt; scoring 4- 8 articles. &amp;nbsp;I have not been able to figure out how to code for the multiple raters in SAS. &amp;nbsp;I have included an example of what this data may look like below under "DATA FOR 6 RATERS". &amp;nbsp;When I try to use the same code for the agreement statistics for 2 raters (e.g. raterxx*rateryy*raterzz) it does not work. &amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help would be much appreciated! &amp;nbsp;Thanks!!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;DATA/CODE FOR 2 RATERS:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;data dataset;&lt;BR /&gt;input Rater1 Rater2 Count;&lt;BR /&gt;datalines;&lt;BR /&gt;6 6 31&lt;BR /&gt;5 5 2&lt;BR /&gt;6 5 2&lt;BR /&gt;6 4 1&lt;/P&gt;&lt;P&gt;4 5 1&lt;BR /&gt;;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;data dataset2;&lt;BR /&gt;set dataset;&lt;BR /&gt;wgt = count;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc freq data=dataset2;&lt;BR /&gt;weight wgt / zeros;&lt;BR /&gt;test kappa;&lt;BR /&gt;tables rater1*rater2 / agree(AC1) nocol norow nopercent plots=agreeplot;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;DATA FOR 6 RATERS:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;data dataset;&lt;BR /&gt;input Rater1 Rater2 Rater3 Rater4 Rater5 Rater6 Count;&lt;BR /&gt;datalines;&lt;BR /&gt;6 6 5 4 5 5 1&amp;nbsp;&lt;BR /&gt;5 5 5 5 4 4 1&lt;BR /&gt;5 5 5 5 5 5 1&lt;BR /&gt;6 4 6 6 5 5 1&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 15 May 2019 02:30:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Trying-to-calculate-AC1-statistic-for-multiple-raters/m-p/558799#M27733</guid>
      <dc:creator>CV9</dc:creator>
      <dc:date>2019-05-15T02:30:09Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to calculate AC1 statistic for multiple raters</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Trying-to-calculate-AC1-statistic-for-multiple-raters/m-p/560492#M27739</link>
      <description>&lt;P&gt;The AC1 statistic is not available, but a multi-rater version of the kappa statistic is available with the &lt;A href="http://support.sas.com/kb/25006" target="_self"&gt;MAGREE macro&lt;/A&gt;.&lt;/P&gt;</description>
      <pubDate>Tue, 21 May 2019 13:26:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Trying-to-calculate-AC1-statistic-for-multiple-raters/m-p/560492#M27739</guid>
      <dc:creator>StatDave</dc:creator>
      <dc:date>2019-05-21T13:26:34Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to calculate AC1 statistic for multiple raters</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Trying-to-calculate-AC1-statistic-for-multiple-raters/m-p/561008#M27751</link>
      <description>&lt;P&gt;Many thanks for your response! &amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have not previously used macros, though I did try to use a macro I found online for multiple-rater Gwet's AC1 that did not work. &amp;nbsp;I am using SAS UE, and not sure if that influences things. &amp;nbsp;I will give this a try. &amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 23 May 2019 01:23:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Trying-to-calculate-AC1-statistic-for-multiple-raters/m-p/561008#M27751</guid>
      <dc:creator>CV9</dc:creator>
      <dc:date>2019-05-23T01:23:31Z</dc:date>
    </item>
  </channel>
</rss>

