<?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: Sensitivity and Specificity output data set in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Sensitivity-and-Specificity-output-data-set/m-p/947122#M83688</link>
    <description>&lt;P&gt;What is the name of the table? I searcher sas and I couldn't find the name for the sensitivity and specificity table.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 11 Oct 2024 13:10:38 GMT</pubDate>
    <dc:creator>LOLO12</dc:creator>
    <dc:date>2024-10-11T13:10:38Z</dc:date>
    <item>
      <title>Sensitivity and Specificity output data set</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Sensitivity-and-Specificity-output-data-set/m-p/947071#M83685</link>
      <description>&lt;P&gt;how to create an output data set for sensitivity and specificity&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc freq data=data;&lt;BR /&gt;table A*B/&amp;nbsp; SENSPEC ;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 11 Oct 2024 00:25:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Sensitivity-and-Specificity-output-data-set/m-p/947071#M83685</guid>
      <dc:creator>LOLO12</dc:creator>
      <dc:date>2024-10-11T00:25:36Z</dc:date>
    </item>
    <item>
      <title>Re: Sensitivity and Specificity output data set</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Sensitivity-and-Specificity-output-data-set/m-p/947091#M83687</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/270892"&gt;@LOLO12&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Add the appropriate &lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/odsug/p0oxrbinw6fjuwn1x23qam6dntyd.htm" target="_blank" rel="noopener"&gt;ODS OUTPUT statement&lt;/A&gt; to your PROC FREQ step (or immediately before it):&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods output senspec=want;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;This assumes that your SAS version is at least 9.4M&lt;STRONG&gt;6&lt;/STRONG&gt; because the SENSPEC option of the TABLES statement was not yet available in maintenance release 5 (which I am using).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;See&amp;nbsp;&lt;A href="https://blogs.sas.com/content/iml/2017/01/09/ods-output-any-statistic.html" target="_blank" rel="noopener"&gt;ODS OUTPUT: Store any statistic created by any SAS procedure&lt;/A&gt; for more background information.&lt;/P&gt;</description>
      <pubDate>Fri, 11 Oct 2024 06:53:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Sensitivity-and-Specificity-output-data-set/m-p/947091#M83687</guid>
      <dc:creator>FreelanceReinh</dc:creator>
      <dc:date>2024-10-11T06:53:47Z</dc:date>
    </item>
    <item>
      <title>Re: Sensitivity and Specificity output data set</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Sensitivity-and-Specificity-output-data-set/m-p/947122#M83688</link>
      <description>&lt;P&gt;What is the name of the table? I searcher sas and I couldn't find the name for the sensitivity and specificity table.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 11 Oct 2024 13:10:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Sensitivity-and-Specificity-output-data-set/m-p/947122#M83688</guid>
      <dc:creator>LOLO12</dc:creator>
      <dc:date>2024-10-11T13:10:38Z</dc:date>
    </item>
    <item>
      <title>Re: Sensitivity and Specificity output data set</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Sensitivity-and-Specificity-output-data-set/m-p/947126#M83689</link>
      <description>&lt;P&gt;The ODS table name is&amp;nbsp;&lt;SPAN&gt;&lt;FONT face="courier new,courier"&gt;SenSpec&lt;/FONT&gt; (case-insensitive) and can be found on the page "&lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/procstat/procstat_freq_details124.htm" target="_blank" rel="noopener"&gt;ODS Table Names&lt;/A&gt;" of the "Details" section of the PROC FREQ documentation.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt; This is very similar to other (statistical) procedures: In virtually all cases, clicking on "Details" in the menu under the procedure name ("The &lt;EM&gt;XXXXXX&lt;/EM&gt; Procedure") in the documentation will open a drop-down list with "ODS Table Names" and (if applicable) "ODS Graphics" as the last two entries.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 11 Oct 2024 13:38:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Sensitivity-and-Specificity-output-data-set/m-p/947126#M83689</guid>
      <dc:creator>FreelanceReinh</dc:creator>
      <dc:date>2024-10-11T13:38:14Z</dc:date>
    </item>
  </channel>
</rss>

