<?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: Kappa coefficient in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Kappa-coefficient/m-p/379519#M19936</link>
    <description>&lt;P&gt;My mistake, the TEST data does not get included in the OUTPUT data set.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 26 Jul 2017 19:19:36 GMT</pubDate>
    <dc:creator>Reeza</dc:creator>
    <dc:date>2017-07-26T19:19:36Z</dc:date>
    <item>
      <title>Kappa coefficient</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Kappa-coefficient/m-p/379168#M19906</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I calculated the Kappa coefficient using the following command:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;&lt;STRONG&gt;proc&lt;/STRONG&gt;&lt;/FONT&gt; &lt;STRONG&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;freq&lt;/FONT&gt;&lt;/STRONG&gt; &lt;FONT color="#0000ff" face="Courier New" size="3"&gt;data&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt; = gabarit_final;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;tables&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt; manager_A_initial_decision * manager_B_initial_decision /&lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;norow&lt;/FONT&gt; &lt;FONT color="#0000ff" face="Courier New" size="3"&gt;nocol&lt;/FONT&gt; &lt;FONT color="#0000ff" face="Courier New" size="3"&gt;nopercent&lt;/FONT&gt; &lt;FONT color="#0000ff" face="Courier New" size="3"&gt;agree&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;test&lt;/FONT&gt; &lt;FONT color="#0000ff" face="Courier New" size="3"&gt;kappa&lt;/FONT&gt; &lt;FONT color="#0000ff" face="Courier New" size="3"&gt;wtkap&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;by&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt; reference_number metho; &lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;&lt;STRONG&gt;run&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="3"&gt;Could someone guide me on how to save the coefficient in a new dataset?&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="3"&gt;Thank you in advance,&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="3"&gt;Shawn&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 25 Jul 2017 18:53:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Kappa-coefficient/m-p/379168#M19906</guid>
      <dc:creator>Shawn08</dc:creator>
      <dc:date>2017-07-25T18:53:08Z</dc:date>
    </item>
    <item>
      <title>Re: Kappa coefficient</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Kappa-coefficient/m-p/379173#M19907</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;output out=want;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 25 Jul 2017 19:05:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Kappa-coefficient/m-p/379173#M19907</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-07-25T19:05:32Z</dc:date>
    </item>
    <item>
      <title>Re: Kappa coefficient</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Kappa-coefficient/m-p/379489#M19933</link>
      <description>&lt;P&gt;Actually, you need to add this in your PROC FREQ step:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods output kappa=mykappas;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;If you just want the kappa values:&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods output kappa=mykappas(where=(label1='Kappa') keep=label1 nvalue1);
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 26 Jul 2017 18:04:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Kappa-coefficient/m-p/379489#M19933</guid>
      <dc:creator>StatDave</dc:creator>
      <dc:date>2017-07-26T18:04:15Z</dc:date>
    </item>
    <item>
      <title>Re: Kappa coefficient</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Kappa-coefficient/m-p/379519#M19936</link>
      <description>&lt;P&gt;My mistake, the TEST data does not get included in the OUTPUT data set.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 26 Jul 2017 19:19:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Kappa-coefficient/m-p/379519#M19936</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-07-26T19:19:36Z</dc:date>
    </item>
  </channel>
</rss>

