<?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: ODS - proc logistic - specific record from output table in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-proc-logistic-specific-record-from-output-table/m-p/108335#M9968</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use more dataset options...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; ods output Association=myAssociation&lt;SPAN style="font-size: 14pt;"&gt;&lt;STRONG&gt;(where=(&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 14pt;"&gt;&lt;STRONG&gt;Label2 = "Sommers' D") keep=Label2 nValue2)&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;EM&gt;;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt; &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;PG&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 30 Aug 2012 14:07:23 GMT</pubDate>
    <dc:creator>PGStats</dc:creator>
    <dc:date>2012-08-30T14:07:23Z</dc:date>
    <item>
      <title>ODS - proc logistic - specific record from output table</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-proc-logistic-specific-record-from-output-table/m-p/108332#M9965</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am using the following code to filter "Association of Predicted Probabilities and Observed Responses" table from &lt;STRONG&gt;proc logistic&lt;/STRONG&gt; procedure output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;proc logistic data=sasuser.out040;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;model default='confidence(1)'n;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ods select Association;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ods output Association=myAssocioation;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;run;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE cellpadding="7" cellspacing="1" class="Table" frame="box" rules="groups" summary="Procedure Logistic: Association Statistics"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TH class="l RowHeader" scope="row"&gt;Percent Concordant&lt;/TH&gt;&lt;TD class="r Data"&gt;76.6&lt;/TD&gt;&lt;TH class="l RowHeader" scope="row"&gt;Somers' D&lt;/TH&gt;&lt;TD class="r Data"&gt;0.582&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="l RowHeader" scope="row"&gt;Percent Discordant&lt;/TH&gt;&lt;TD class="r Data"&gt;18.4&lt;/TD&gt;&lt;TH class="l RowHeader" scope="row"&gt;Gamma&lt;/TH&gt;&lt;TD class="r Data"&gt;0.613&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="l RowHeader" scope="row"&gt;Percent Tied&lt;/TH&gt;&lt;TD class="r Data"&gt;5.0&lt;/TD&gt;&lt;TH class="l RowHeader" scope="row"&gt;Tau-a&lt;/TH&gt;&lt;TD class="r Data"&gt;0.030&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="l RowHeader" scope="row"&gt;Pairs&lt;/TH&gt;&lt;TD class="r Data"&gt;1644147&lt;/TD&gt;&lt;TH class="l RowHeader" scope="row"&gt;c&lt;/TH&gt;&lt;TD class="r Data"&gt;0.791&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;In output table I want to store only one parameter (Somers' D). How can I do this?&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The output table looks like this. I can, of course, do it by selecting cValue2 where Label2 = Sommers' D, but I hope that SAS offers getting the value I need directly from output of logistic procedure without any dummy workarounds.&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Clipboard02.jpg" class="jive-image-thumbnail jive-image" src="https://communities.sas.com/legacyfs/online/2437_Clipboard02.jpg" width="450" /&gt;&lt;/P&gt;&lt;P&gt;Thanks for answers!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Aug 2012 09:35:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-proc-logistic-specific-record-from-output-table/m-p/108332#M9965</guid>
      <dc:creator>julob</dc:creator>
      <dc:date>2012-08-30T09:35:49Z</dc:date>
    </item>
    <item>
      <title>Re: ODS - proc logistic - specific record from output table</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-proc-logistic-specific-record-from-output-table/m-p/108333#M9966</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not sure if I understand what you are after, but it seems straightforward to me using a data set option:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;proc logistic data=sasuser.out040;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;model default='confidence(1)'n;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ods select Association;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ods output Association=myAssocioation&lt;SPAN style="font-size: 14pt;"&gt;&lt;STRONG&gt;(where=(&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/EM&gt;&lt;SPAN style="font-size: 14pt;"&gt;&lt;STRONG&gt;Label2 = "Sommers' D"))&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;EM&gt;;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;run;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Please note, ODS displays label, not the variable name, so make sure label2 is the variable name.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Haikuo&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Aug 2012 13:37:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-proc-logistic-specific-record-from-output-table/m-p/108333#M9966</guid>
      <dc:creator>Haikuo</dc:creator>
      <dc:date>2012-08-30T13:37:07Z</dc:date>
    </item>
    <item>
      <title>Re: ODS - proc logistic - specific record from output table</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-proc-logistic-specific-record-from-output-table/m-p/108334#M9967</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Haikuo,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;by your code I get whole line from output (see screenshot above). I want extract only one value. Any ideas?&lt;/P&gt;&lt;P&gt;Or can I somehow extract only one column from output?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;J.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Aug 2012 13:51:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-proc-logistic-specific-record-from-output-table/m-p/108334#M9967</guid>
      <dc:creator>julob</dc:creator>
      <dc:date>2012-08-30T13:51:10Z</dc:date>
    </item>
    <item>
      <title>Re: ODS - proc logistic - specific record from output table</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-proc-logistic-specific-record-from-output-table/m-p/108335#M9968</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use more dataset options...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; ods output Association=myAssociation&lt;SPAN style="font-size: 14pt;"&gt;&lt;STRONG&gt;(where=(&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 14pt;"&gt;&lt;STRONG&gt;Label2 = "Sommers' D") keep=Label2 nValue2)&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;EM&gt;;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt; &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;PG&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Aug 2012 14:07:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-proc-logistic-specific-record-from-output-table/m-p/108335#M9968</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2012-08-30T14:07:23Z</dc:date>
    </item>
    <item>
      <title>Re: ODS - proc logistic - specific record from output table</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-proc-logistic-specific-record-from-output-table/m-p/108336#M9969</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks guys&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Aug 2012 14:12:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-proc-logistic-specific-record-from-output-table/m-p/108336#M9969</guid>
      <dc:creator>julob</dc:creator>
      <dc:date>2012-08-30T14:12:42Z</dc:date>
    </item>
  </channel>
</rss>

