<?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 Need to include t value and adjusted R square in resulting date in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Need-to-include-t-value-and-adjusted-R-square-in-resulting-date/m-p/952135#M372140</link>
    <description>&lt;P&gt;I am running multiple regressions in 1 data set by group variable. I am able to get its parameters in data set by using following cod:&lt;/P&gt;&lt;P&gt;proc reg noprint data=mydata outest=re edf ;&lt;BR /&gt;model RO = Var1 Var2;&lt;BR /&gt;by group;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;but I need its t values and adjusted R square as well. I am not able to figure out code to get R square and t values in data set.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 28 Nov 2024 16:57:46 GMT</pubDate>
    <dc:creator>Fatima123456</dc:creator>
    <dc:date>2024-11-28T16:57:46Z</dc:date>
    <item>
      <title>Need to include t value and adjusted R square in resulting date</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Need-to-include-t-value-and-adjusted-R-square-in-resulting-date/m-p/952135#M372140</link>
      <description>&lt;P&gt;I am running multiple regressions in 1 data set by group variable. I am able to get its parameters in data set by using following cod:&lt;/P&gt;&lt;P&gt;proc reg noprint data=mydata outest=re edf ;&lt;BR /&gt;model RO = Var1 Var2;&lt;BR /&gt;by group;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;but I need its t values and adjusted R square as well. I am not able to figure out code to get R square and t values in data set.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 28 Nov 2024 16:57:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Need-to-include-t-value-and-adjusted-R-square-in-resulting-date/m-p/952135#M372140</guid>
      <dc:creator>Fatima123456</dc:creator>
      <dc:date>2024-11-28T16:57:46Z</dc:date>
    </item>
    <item>
      <title>Re: Need to include t value and adjusted R square in resulting date</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Need-to-include-t-value-and-adjusted-R-square-in-resulting-date/m-p/952136#M372141</link>
      <description>&lt;P&gt;You would want to use ODS OUTPUT. Example:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sort data=sashelp.class out=class;
    by sex;
run;

proc reg data=class;
    ods output parameterestimates=parameterestimates fitstatistics=fitstatistics;
    by sex;
    model weight=height age;
run;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 28 Nov 2024 17:31:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Need-to-include-t-value-and-adjusted-R-square-in-resulting-date/m-p/952136#M372141</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2024-11-28T17:31:27Z</dc:date>
    </item>
  </channel>
</rss>

