<?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 modify 'proc glm' in sas to find estimates per 10 units or per SD unit change of the exposure in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-modify-proc-glm-in-sas-to-find-estimates-per-10-units-or/m-p/722628#M35014</link>
    <description>&lt;P&gt;I am using proc glm in SAS to find the estimates per unit change of exposure for the response variables. How could I modify my code so that it would calculate the estimates per 10 units or per SD change of the exposure variables? Here is my code:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE&gt; PROC GLM DATA=MyData PLOTS=NONE;
        CLASS &amp;amp;ClassAdj;
        MODEL &amp;amp;TraitList = &amp;amp;PVar &amp;amp;ClassAdj &amp;amp;ContAdj / SOLUTION E;
        %IF &amp;amp;ByVars ^= %THEN BY &amp;amp;ByVars;;
    QUIT;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 01 Mar 2021 17:20:28 GMT</pubDate>
    <dc:creator>ph6</dc:creator>
    <dc:date>2021-03-01T17:20:28Z</dc:date>
    <item>
      <title>How to modify 'proc glm' in sas to find estimates per 10 units or per SD unit change of the exposure</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-modify-proc-glm-in-sas-to-find-estimates-per-10-units-or/m-p/722628#M35014</link>
      <description>&lt;P&gt;I am using proc glm in SAS to find the estimates per unit change of exposure for the response variables. How could I modify my code so that it would calculate the estimates per 10 units or per SD change of the exposure variables? Here is my code:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE&gt; PROC GLM DATA=MyData PLOTS=NONE;
        CLASS &amp;amp;ClassAdj;
        MODEL &amp;amp;TraitList = &amp;amp;PVar &amp;amp;ClassAdj &amp;amp;ContAdj / SOLUTION E;
        %IF &amp;amp;ByVars ^= %THEN BY &amp;amp;ByVars;;
    QUIT;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 01 Mar 2021 17:20:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-modify-proc-glm-in-sas-to-find-estimates-per-10-units-or/m-p/722628#M35014</guid>
      <dc:creator>ph6</dc:creator>
      <dc:date>2021-03-01T17:20:28Z</dc:date>
    </item>
    <item>
      <title>Re: How to modify 'proc glm' in sas to find estimates per 10 units or per SD unit change of the expo</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-modify-proc-glm-in-sas-to-find-estimates-per-10-units-or/m-p/722629#M35015</link>
      <description>&lt;P&gt;Per 10 Units:&lt;/P&gt;
&lt;P&gt;You don't have to modify your code, you can just multiply the regression coefficients by 10.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Per 1 SD unit change&lt;/P&gt;
&lt;P&gt;As above, you just need to multiply the regression coefficients by the proper number.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Or you could modify the input data, but that isn't what you asked.&lt;/P&gt;</description>
      <pubDate>Mon, 01 Mar 2021 17:23:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-modify-proc-glm-in-sas-to-find-estimates-per-10-units-or/m-p/722629#M35015</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2021-03-01T17:23:37Z</dc:date>
    </item>
    <item>
      <title>Re: How to modify 'proc glm' in sas to find estimates per 10 units or per SD unit change of the expo</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-modify-proc-glm-in-sas-to-find-estimates-per-10-units-or/m-p/722631#M35016</link>
      <description>Thank you so much. For the SD do you have any thoughts how could modify the data?</description>
      <pubDate>Mon, 01 Mar 2021 17:31:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-modify-proc-glm-in-sas-to-find-estimates-per-10-units-or/m-p/722631#M35016</guid>
      <dc:creator>ph6</dc:creator>
      <dc:date>2021-03-01T17:31:44Z</dc:date>
    </item>
    <item>
      <title>Re: How to modify 'proc glm' in sas to find estimates per 10 units or per SD unit change of the expo</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-modify-proc-glm-in-sas-to-find-estimates-per-10-units-or/m-p/722632#M35017</link>
      <description>&lt;P&gt;You can change the input data by standardizing it so each continuous variable has a standard deviation of 1.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Use &lt;A href="https://documentation.sas.com/?cdcId=pgmsascdc&amp;amp;cdcVersion=9.4_3.4&amp;amp;docsetId=statug&amp;amp;docsetTarget=statug_stdize_toc.htm&amp;amp;locale=en" target="_self"&gt;PROC STDIZE&lt;/A&gt;&amp;nbsp;with METHOD=STD&lt;/P&gt;</description>
      <pubDate>Mon, 01 Mar 2021 17:35:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-modify-proc-glm-in-sas-to-find-estimates-per-10-units-or/m-p/722632#M35017</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2021-03-01T17:35:24Z</dc:date>
    </item>
    <item>
      <title>Re: How to modify 'proc glm' in sas to find estimates per 10 units or per SD unit change of the expo</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-modify-proc-glm-in-sas-to-find-estimates-per-10-units-or/m-p/722738#M35027</link>
      <description>&lt;P&gt;.&lt;/P&gt;</description>
      <pubDate>Tue, 02 Mar 2021 00:43:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-modify-proc-glm-in-sas-to-find-estimates-per-10-units-or/m-p/722738#M35027</guid>
      <dc:creator>ph6</dc:creator>
      <dc:date>2021-03-02T00:43:31Z</dc:date>
    </item>
    <item>
      <title>Re: How to modify 'proc glm' in sas to find estimates per 10 units or per SD unit change of the expo</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-modify-proc-glm-in-sas-to-find-estimates-per-10-units-or/m-p/722745#M35028</link>
      <description>&lt;P&gt;You can also consider using the ESTIMATE statement in PROC GLM to estimate what you wanted. For example, if the model is --&lt;/P&gt;
&lt;P&gt;model y=x1 x2 x3;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;then estimate 'change in y for 10 units change in x1' x1 10;&lt;/P&gt;
&lt;P&gt;estimate ' change in y for sd=3.4 units change in x1' x1 3.4;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;might get what you wanted.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Mar 2021 00:07:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-modify-proc-glm-in-sas-to-find-estimates-per-10-units-or/m-p/722745#M35028</guid>
      <dc:creator>jiltao</dc:creator>
      <dc:date>2021-03-02T00:07:49Z</dc:date>
    </item>
    <item>
      <title>Re: How to modify 'proc glm' in sas to find estimates per 10 units or per SD unit change of the expo</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-modify-proc-glm-in-sas-to-find-estimates-per-10-units-or/m-p/722750#M35029</link>
      <description>Thank you, what if I have logistic regression?</description>
      <pubDate>Tue, 02 Mar 2021 00:37:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-modify-proc-glm-in-sas-to-find-estimates-per-10-units-or/m-p/722750#M35029</guid>
      <dc:creator>ph6</dc:creator>
      <dc:date>2021-03-02T00:37:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to modify 'proc glm' in sas to find estimates per 10 units or per SD unit change of the expo</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-modify-proc-glm-in-sas-to-find-estimates-per-10-units-or/m-p/722759#M35030</link>
      <description>You would use PROC LOGISTIC to fit your model with similar ESTIMATE statements to get what you wanted. The results are in the logit scale.</description>
      <pubDate>Tue, 02 Mar 2021 01:56:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-modify-proc-glm-in-sas-to-find-estimates-per-10-units-or/m-p/722759#M35030</guid>
      <dc:creator>jiltao</dc:creator>
      <dc:date>2021-03-02T01:56:19Z</dc:date>
    </item>
    <item>
      <title>Re: How to modify 'proc glm' in sas to find estimates per 10 units or per SD unit change of the expo</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-modify-proc-glm-in-sas-to-find-estimates-per-10-units-or/m-p/722849#M35040</link>
      <description>Logistic regression check UNITS Statement.</description>
      <pubDate>Tue, 02 Mar 2021 12:46:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-modify-proc-glm-in-sas-to-find-estimates-per-10-units-or/m-p/722849#M35040</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2021-03-02T12:46:51Z</dc:date>
    </item>
    <item>
      <title>Re: How to modify 'proc glm' in sas to find estimates per 10 units or per SD unit change of the expo</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-modify-proc-glm-in-sas-to-find-estimates-per-10-units-or/m-p/722854#M35043</link>
      <description>Would it be OK to divide x by 10, and standardize the SDs before running the model?</description>
      <pubDate>Tue, 02 Mar 2021 13:12:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-modify-proc-glm-in-sas-to-find-estimates-per-10-units-or/m-p/722854#M35043</guid>
      <dc:creator>ph6</dc:creator>
      <dc:date>2021-03-02T13:12:37Z</dc:date>
    </item>
    <item>
      <title>Re: How to modify 'proc glm' in sas to find estimates per 10 units or per SD unit change of the expo</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-modify-proc-glm-in-sas-to-find-estimates-per-10-units-or/m-p/722856#M35045</link>
      <description>No. That is not OK. Logistic model have different LINK function .</description>
      <pubDate>Tue, 02 Mar 2021 13:33:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-modify-proc-glm-in-sas-to-find-estimates-per-10-units-or/m-p/722856#M35045</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2021-03-02T13:33:51Z</dc:date>
    </item>
  </channel>
</rss>

