<?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 Proc quantreg output likelihood ratio in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Proc-quantreg-output-likelihood-ratio/m-p/320701#M16936</link>
    <description>&lt;P&gt;Dear All,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am running a quantile regression and I would love to have in the output SAS the tests I am performing.&lt;/P&gt;&lt;P&gt;I am using this code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc quantreg data=datain.Input ci=none outest=Dataout.Output ;&lt;BR /&gt;by segment;&lt;BR /&gt;model Y= Variable1 Variable2&lt;BR /&gt;/ quantile=0.90&lt;BR /&gt;covB CorrB;&lt;BR /&gt;test &lt;SPAN&gt;Variable1 Variable2&lt;/SPAN&gt;/ wald lr ;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In this way, in the table I see only the coefficients of the regression.&lt;/P&gt;&lt;P&gt;If I use this other code below, I can &amp;nbsp;see only the tests.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ods output Tests=&lt;SPAN&gt;Dataout.Output&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;proc quantreg data=datain.Input ci=none &amp;nbsp;;&lt;BR /&gt;by segment;&lt;BR /&gt;model Y= Variable1 Variable2&lt;BR /&gt;/ quantile=0.90&lt;BR /&gt;covB CorrB;&lt;BR /&gt;test Variable1 Variable2/ wald lr ;&lt;BR /&gt;run;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;How can I have &lt;STRONG&gt;in the same table&lt;/STRONG&gt; the likelihood ratio and the coefficients of the regression?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thank you so much. I really appreciate your help.&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 22 Dec 2016 10:28:29 GMT</pubDate>
    <dc:creator>Alberto90</dc:creator>
    <dc:date>2016-12-22T10:28:29Z</dc:date>
    <item>
      <title>Proc quantreg output likelihood ratio</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Proc-quantreg-output-likelihood-ratio/m-p/320701#M16936</link>
      <description>&lt;P&gt;Dear All,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am running a quantile regression and I would love to have in the output SAS the tests I am performing.&lt;/P&gt;&lt;P&gt;I am using this code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc quantreg data=datain.Input ci=none outest=Dataout.Output ;&lt;BR /&gt;by segment;&lt;BR /&gt;model Y= Variable1 Variable2&lt;BR /&gt;/ quantile=0.90&lt;BR /&gt;covB CorrB;&lt;BR /&gt;test &lt;SPAN&gt;Variable1 Variable2&lt;/SPAN&gt;/ wald lr ;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In this way, in the table I see only the coefficients of the regression.&lt;/P&gt;&lt;P&gt;If I use this other code below, I can &amp;nbsp;see only the tests.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ods output Tests=&lt;SPAN&gt;Dataout.Output&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;proc quantreg data=datain.Input ci=none &amp;nbsp;;&lt;BR /&gt;by segment;&lt;BR /&gt;model Y= Variable1 Variable2&lt;BR /&gt;/ quantile=0.90&lt;BR /&gt;covB CorrB;&lt;BR /&gt;test Variable1 Variable2/ wald lr ;&lt;BR /&gt;run;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;How can I have &lt;STRONG&gt;in the same table&lt;/STRONG&gt; the likelihood ratio and the coefficients of the regression?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thank you so much. I really appreciate your help.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Dec 2016 10:28:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Proc-quantreg-output-likelihood-ratio/m-p/320701#M16936</guid>
      <dc:creator>Alberto90</dc:creator>
      <dc:date>2016-12-22T10:28:29Z</dc:date>
    </item>
    <item>
      <title>Re: Proc quantreg output likelihood ratio</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Proc-quantreg-output-likelihood-ratio/m-p/321083#M16977</link>
      <description>&lt;P&gt;In general, your request is handled in SAS by creating two data tables and then merging the results. So use&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;ods output Tests=&lt;/SPAN&gt;&lt;SPAN&gt;OutTests;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;proc quantreg data=datain.Input ci=none outest=OutCoeff ;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;by segment;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;...&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;run;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;BR /&gt;data Dataout.Output;&lt;BR /&gt;merge OutCoeff OutTests;&lt;BR /&gt;by segment;&lt;BR /&gt;run;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 25 Dec 2016 12:16:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Proc-quantreg-output-likelihood-ratio/m-p/321083#M16977</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2016-12-25T12:16:34Z</dc:date>
    </item>
  </channel>
</rss>

