<?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 How to create a table with kappa values in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/How-to-create-a-table-with-kappa-values/m-p/549858#M152630</link>
    <description>&lt;P&gt;Hello all,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm trying to create a summary table with kappa values.&lt;/P&gt;&lt;P&gt;I often use "proc tabulate" for making tables.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there a way to pull out the results of other procedures (like kappa statistics can be calculated by "proc freq"),&lt;/P&gt;&lt;P&gt;and make them appear in tables made by "proc tabulate"??&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm not so used to "ods", however, will ods help me??&lt;/P&gt;</description>
    <pubDate>Wed, 10 Apr 2019 07:23:22 GMT</pubDate>
    <dc:creator>kota</dc:creator>
    <dc:date>2019-04-10T07:23:22Z</dc:date>
    <item>
      <title>How to create a table with kappa values</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-create-a-table-with-kappa-values/m-p/549858#M152630</link>
      <description>&lt;P&gt;Hello all,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm trying to create a summary table with kappa values.&lt;/P&gt;&lt;P&gt;I often use "proc tabulate" for making tables.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there a way to pull out the results of other procedures (like kappa statistics can be calculated by "proc freq"),&lt;/P&gt;&lt;P&gt;and make them appear in tables made by "proc tabulate"??&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm not so used to "ods", however, will ods help me??&lt;/P&gt;</description>
      <pubDate>Wed, 10 Apr 2019 07:23:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-create-a-table-with-kappa-values/m-p/549858#M152630</guid>
      <dc:creator>kota</dc:creator>
      <dc:date>2019-04-10T07:23:22Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a table with kappa values</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-create-a-table-with-kappa-values/m-p/549987#M152674</link>
      <description>&lt;P&gt;My generic approach to using Proc Tabulate to display pre-calculated values is to make the variables VAR variable and request a statistic such as max or min with a suppressed label. The caution that needs to be used with this approach is that you need to make sure that your class variables always point to a unique value. If the base data has two values for one Class variable crossed with one then you lose (or summarize) the variable.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;An example:&lt;/P&gt;
&lt;PRE&gt;data example;
   input x y kappa;
datalines;
1 1 .9
1 2 1.3
2 1 1.8
2 2 .02
;
run;

proc tabulate data=example;
   class x y;
   var kappa;
   table x*kappa*(max=''),
         y
         /row=float
   ;
run;&lt;/PRE&gt;
&lt;P&gt;The Row=float suppresses the empty cell that would hold the statistic label.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 10 Apr 2019 15:21:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-create-a-table-with-kappa-values/m-p/549987#M152674</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2019-04-10T15:21:50Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a table with kappa values</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-create-a-table-with-kappa-values/m-p/550487#M152843</link>
      <description>&lt;P&gt;I want to know if there is an approach to "pull out" the results of other procedures,&lt;/P&gt;&lt;P&gt;and like "paste it" in the proc tabulate output.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is this some kind of a macro thing??&lt;/P&gt;&lt;P&gt;Or maybe using ods??&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Anyway, thank you for your reply!&lt;/P&gt;</description>
      <pubDate>Fri, 12 Apr 2019 02:24:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-create-a-table-with-kappa-values/m-p/550487#M152843</guid>
      <dc:creator>kota</dc:creator>
      <dc:date>2019-04-12T02:24:23Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a table with kappa values</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-create-a-table-with-kappa-values/m-p/550548#M152869</link>
      <description>&lt;P&gt;proc freq can write the results to a dataset, surely you have read that already in the documentation of proc freq. This dataset, can then be used as input for proc tabulate.&lt;/P&gt;</description>
      <pubDate>Fri, 12 Apr 2019 09:15:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-create-a-table-with-kappa-values/m-p/550548#M152869</guid>
      <dc:creator>andreas_lds</dc:creator>
      <dc:date>2019-04-12T09:15:48Z</dc:date>
    </item>
  </channel>
</rss>

