<?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: 95 % CI for standardized beta coefficients in proc glm in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/95-CI-for-standardized-beta-coefficients-in-proc-glm/m-p/882626#M348708</link>
    <description>&lt;P&gt;Hi Paige: Please look at &lt;A href="https://blogs.sas.com/content/iml/2018/08/22/standardized-regression-coefficients.html" target="_self"&gt;"Standardized regression coefficients,"&lt;/A&gt;&amp;nbsp;which shows that you must standardize the response variable if you want to reproduce the results of the STB option in PROC REG.&lt;/P&gt;</description>
    <pubDate>Tue, 27 Jun 2023 13:36:40 GMT</pubDate>
    <dc:creator>Rick_SAS</dc:creator>
    <dc:date>2023-06-27T13:36:40Z</dc:date>
    <item>
      <title>95 % CI for standardized beta coefficients in proc glm</title>
      <link>https://communities.sas.com/t5/SAS-Programming/95-CI-for-standardized-beta-coefficients-in-proc-glm/m-p/882599#M348690</link>
      <description>Hi there,&lt;BR /&gt;&lt;BR /&gt;I would like to calculate 95 % confidence limits for standardized beta coefficients.&lt;BR /&gt;&lt;BR /&gt;(Thanks to this platform) I managed to calculate them via proc reg.&lt;BR /&gt;&lt;BR /&gt;However, as I have categorical variables included in my model, I would prefer using proc glm (as proc reg does not seem to support class statements).&lt;BR /&gt;&lt;BR /&gt;Using proc glm I managed to calculate standardized beta coefficients but no respective CIs. Does anyone know how to solve this?&lt;BR /&gt;&lt;BR /&gt;Your help would be much appreciated!</description>
      <pubDate>Tue, 27 Jun 2023 11:03:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/95-CI-for-standardized-beta-coefficients-in-proc-glm/m-p/882599#M348690</guid>
      <dc:creator>LB1993</dc:creator>
      <dc:date>2023-06-27T11:03:47Z</dc:date>
    </item>
    <item>
      <title>Re: 95 % CI for standardized beta coefficients in proc glm</title>
      <link>https://communities.sas.com/t5/SAS-Programming/95-CI-for-standardized-beta-coefficients-in-proc-glm/m-p/882601#M348691</link>
      <description>&lt;P&gt;In PROC GLM, you can use the SOLUTION option and the CLPARM option in the MODEL statement to obtain the coefficient estimates and their confidence intervals.&lt;/P&gt;</description>
      <pubDate>Tue, 27 Jun 2023 11:23:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/95-CI-for-standardized-beta-coefficients-in-proc-glm/m-p/882601#M348691</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2023-06-27T11:23:57Z</dc:date>
    </item>
    <item>
      <title>Re: 95 % CI for standardized beta coefficients in proc glm</title>
      <link>https://communities.sas.com/t5/SAS-Programming/95-CI-for-standardized-beta-coefficients-in-proc-glm/m-p/882615#M348699</link>
      <description>&lt;P&gt;Please read the article &lt;A href="https://blogs.sas.com/content/iml/2018/08/22/standardized-regression-coefficients.html" target="_self"&gt;"Standardized regression coefficients"&lt;/A&gt;&amp;nbsp;for an explanation of standardized regression coefficients and how to interpret them. Specifically, the article states, "the standardized coefficients predict the number of standard deviations that the response will change for one STANDARD DEVIATION of change in an explanatory variable."&amp;nbsp; The concept of a "standard deviation" is generally applied to CONTINUOUS variables, not discrete classification variables.&amp;nbsp;For example, if you include Sex = "Male" | "Female" as a classification variable in a model, it doesn't make sense to ask how the response changes for "one standard deviation of change in sex."&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Consequently, the GLM procedure does not support the STB option that PROC REG uses to display standardized regression estimates. It is possible to perform the computation manually by storing the response variable and the design matrix, using PROC STDIZE as shown in the article, and then using the standardized variables in PROC REG. However, I don't think the result will be meaningful.&lt;/P&gt;</description>
      <pubDate>Tue, 27 Jun 2023 13:35:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/95-CI-for-standardized-beta-coefficients-in-proc-glm/m-p/882615#M348699</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2023-06-27T13:35:07Z</dc:date>
    </item>
    <item>
      <title>Re: 95 % CI for standardized beta coefficients in proc glm</title>
      <link>https://communities.sas.com/t5/SAS-Programming/95-CI-for-standardized-beta-coefficients-in-proc-glm/m-p/882616#M348700</link>
      <description>&lt;P&gt;Thank you so much for your quick reply.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I now tried the following:&lt;/P&gt;&lt;P&gt;PROC STDIZE DATA = dataset OUT = std_dataset;&lt;BR /&gt;VAR X&lt;BR /&gt;;&lt;BR /&gt;RUN;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ODS OUTPUT ParameterEstimates= ParameterEstimates;&lt;BR /&gt;PROC GLM data = std_dataset;&lt;BR /&gt;CLASS y1 y2;&lt;BR /&gt;MODEL X = y1 y2 y3 / SOLUTION CLPARM;&lt;BR /&gt;ODS SELECT ParameterEstimates;&lt;BR /&gt;QUIT;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;...and it does works!&lt;/P&gt;</description>
      <pubDate>Tue, 27 Jun 2023 12:56:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/95-CI-for-standardized-beta-coefficients-in-proc-glm/m-p/882616#M348700</guid>
      <dc:creator>LB1993</dc:creator>
      <dc:date>2023-06-27T12:56:51Z</dc:date>
    </item>
    <item>
      <title>Re: 95 % CI for standardized beta coefficients in proc glm</title>
      <link>https://communities.sas.com/t5/SAS-Programming/95-CI-for-standardized-beta-coefficients-in-proc-glm/m-p/882618#M348702</link>
      <description>&lt;P&gt;Thank you for sharing your thoughts on this. That is, you would refrain from calculating the standardised betas altogether and rather calculate the unstandardised betas and respective CIs?&lt;/P&gt;</description>
      <pubDate>Tue, 27 Jun 2023 13:00:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/95-CI-for-standardized-beta-coefficients-in-proc-glm/m-p/882618#M348702</guid>
      <dc:creator>LB1993</dc:creator>
      <dc:date>2023-06-27T13:00:17Z</dc:date>
    </item>
    <item>
      <title>Re: 95 % CI for standardized beta coefficients in proc glm</title>
      <link>https://communities.sas.com/t5/SAS-Programming/95-CI-for-standardized-beta-coefficients-in-proc-glm/m-p/882621#M348704</link>
      <description>&lt;P&gt;Yes, that is what I meant.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But here's another idea that you might consider. If your explanatory variables are on vastly different scales, it makes sense to compute standardized coefficient estimates, but ONLY for the continuous variables. Maybe that's a reasonable compromise? To do that, follow the instructions in the article: use PROC STDIZE to standardize the response and the continuous regressors. Then specify the standardized variables and the (unstandardized) classification variables on the MODEL statement in PROC GLM. That will enable you to compare the size of the betas for the (standardized) continuous regressors. The coefficients for the classification variables will have their usual interpretations.&lt;/P&gt;</description>
      <pubDate>Tue, 27 Jun 2023 13:34:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/95-CI-for-standardized-beta-coefficients-in-proc-glm/m-p/882621#M348704</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2023-06-27T13:34:14Z</dc:date>
    </item>
    <item>
      <title>Re: 95 % CI for standardized beta coefficients in proc glm</title>
      <link>https://communities.sas.com/t5/SAS-Programming/95-CI-for-standardized-beta-coefficients-in-proc-glm/m-p/882625#M348707</link>
      <description>&lt;P&gt;Typically, the independent variables used in a regression model are known as X1 X2 ... and the response is Y. You have reversed these. While this is not a problem for SAS if you remain consistent, you may have difficulty communicating what you are doing if you have Y predicting X which could lead to confusion (people are expecting X to predict Y).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;However, your mistake is in PROC STDIZE, which should not be standardizing the response. It should be standardizing the independent and continuous predictor variables (not the dummy variables) and you would not standardize the response variable. So perhaps your naming scheme has confused you as well.&lt;/P&gt;</description>
      <pubDate>Tue, 27 Jun 2023 13:30:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/95-CI-for-standardized-beta-coefficients-in-proc-glm/m-p/882625#M348707</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2023-06-27T13:30:56Z</dc:date>
    </item>
    <item>
      <title>Re: 95 % CI for standardized beta coefficients in proc glm</title>
      <link>https://communities.sas.com/t5/SAS-Programming/95-CI-for-standardized-beta-coefficients-in-proc-glm/m-p/882626#M348708</link>
      <description>&lt;P&gt;Hi Paige: Please look at &lt;A href="https://blogs.sas.com/content/iml/2018/08/22/standardized-regression-coefficients.html" target="_self"&gt;"Standardized regression coefficients,"&lt;/A&gt;&amp;nbsp;which shows that you must standardize the response variable if you want to reproduce the results of the STB option in PROC REG.&lt;/P&gt;</description>
      <pubDate>Tue, 27 Jun 2023 13:36:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/95-CI-for-standardized-beta-coefficients-in-proc-glm/m-p/882626#M348708</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2023-06-27T13:36:40Z</dc:date>
    </item>
    <item>
      <title>Re: 95 % CI for standardized beta coefficients in proc glm</title>
      <link>https://communities.sas.com/t5/SAS-Programming/95-CI-for-standardized-beta-coefficients-in-proc-glm/m-p/882632#M348710</link>
      <description>&lt;P&gt;Maybe splitting hairs here, but the OP did not specifically request to match the STB option in PROC REG. So in my mind, standardizing just the continuous independent variables and not the Y variables satisfies the original request, and allows comparisons of standardized regression coefficients. But the most recent code from&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/445655"&gt;@LB1993&lt;/a&gt;&amp;nbsp;doesn't do either your method or my method.&lt;/P&gt;</description>
      <pubDate>Tue, 27 Jun 2023 13:52:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/95-CI-for-standardized-beta-coefficients-in-proc-glm/m-p/882632#M348710</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2023-06-27T13:52:44Z</dc:date>
    </item>
    <item>
      <title>Re: 95 % CI for standardized beta coefficients in proc glm</title>
      <link>https://communities.sas.com/t5/SAS-Programming/95-CI-for-standardized-beta-coefficients-in-proc-glm/m-p/882777#M348782</link>
      <description>According to Rick's blog&lt;BR /&gt;&lt;A href="https://blogs.sas.com/content/iml/2018/08/22/standardized-regression-coefficients.html" target="_blank"&gt;https://blogs.sas.com/content/iml/2018/08/22/standardized-regression-coefficients.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;there is a URL you can refer to :&lt;BR /&gt;&lt;A href="https://support.sas.com/kb/22/590.html" target="_blank"&gt;https://support.sas.com/kb/22/590.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Check PROC GLMSELECT:&lt;BR /&gt;&lt;BR /&gt;   proc glmselect data=plants;&lt;BR /&gt;      class type block;&lt;BR /&gt;      model stemleng = type block / selection=none stb showpvalues;&lt;BR /&gt;   run;</description>
      <pubDate>Wed, 28 Jun 2023 11:44:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/95-CI-for-standardized-beta-coefficients-in-proc-glm/m-p/882777#M348782</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2023-06-28T11:44:50Z</dc:date>
    </item>
    <item>
      <title>Re: 95 % CI for standardized beta coefficients in proc glm</title>
      <link>https://communities.sas.com/t5/SAS-Programming/95-CI-for-standardized-beta-coefficients-in-proc-glm/m-p/882792#M348792</link>
      <description>&lt;P&gt;I had forgottenof PROC GLMSELECT. Nice find,&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/18408"&gt;@Ksharp&lt;/a&gt;&amp;nbsp;!&lt;/P&gt;</description>
      <pubDate>Wed, 28 Jun 2023 13:22:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/95-CI-for-standardized-beta-coefficients-in-proc-glm/m-p/882792#M348792</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2023-06-28T13:22:59Z</dc:date>
    </item>
    <item>
      <title>Re: 95 % CI for standardized beta coefficients in proc glm</title>
      <link>https://communities.sas.com/t5/SAS-Programming/95-CI-for-standardized-beta-coefficients-in-proc-glm/m-p/883053#M348924</link>
      <description>&lt;P&gt;So sorry for the confusion caused and thanks again for your help!&lt;/P&gt;</description>
      <pubDate>Fri, 30 Jun 2023 06:50:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/95-CI-for-standardized-beta-coefficients-in-proc-glm/m-p/883053#M348924</guid>
      <dc:creator>LB1993</dc:creator>
      <dc:date>2023-06-30T06:50:49Z</dc:date>
    </item>
    <item>
      <title>Re: 95 % CI for standardized beta coefficients in proc glm</title>
      <link>https://communities.sas.com/t5/SAS-Programming/95-CI-for-standardized-beta-coefficients-in-proc-glm/m-p/883519#M349092</link>
      <description>&lt;P&gt;Thanks so much for your help!&lt;/P&gt;&lt;P&gt;Is there a way to calculate stand. beta CIs via PROC GLMSELECT (so far I could not find any)?&lt;/P&gt;&lt;P&gt;What is the advantage of PROC GLMSELECT over the SOLUTION option and the CLPARM option in PROC GLM as mentioned by PaigeMiller?&lt;/P&gt;</description>
      <pubDate>Wed, 05 Jul 2023 08:46:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/95-CI-for-standardized-beta-coefficients-in-proc-glm/m-p/883519#M349092</guid>
      <dc:creator>LB1993</dc:creator>
      <dc:date>2023-07-05T08:46:29Z</dc:date>
    </item>
    <item>
      <title>Re: 95 % CI for standardized beta coefficients in proc glm</title>
      <link>https://communities.sas.com/t5/SAS-Programming/95-CI-for-standardized-beta-coefficients-in-proc-glm/m-p/883539#M349096</link>
      <description>&lt;P&gt;Sorry.I have no idea about it.&lt;/P&gt;
&lt;P&gt;I think&amp;nbsp;&lt;SPAN&gt;the advantage of PROC GLMSELECT is you can get STB directly .especially when you have CLASS variable which PROC REG can't offer it .&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data DrugTest; input Drug $ Gender $ X Y @@; 
datalines; 
A F 9 25 A F 3 19 A F 4 18 A F 11 28 A F 7 23 A M 11 27 A M 9 24 A M 9 25 A M 10 28 A M 10 26 D F 4 37 D F 12 54 D F 3 33 D F 6 41 D F 9 47 D M 5 36 D M 4 36 D M 7 40 D M 10 46 D M 8 42 G F 10 70 G F 11 75 G F 7 60 G F 9 69 G F 10 71 G M 3 47 G M 8 60 G M 11 70 G M 4 49 G M 4 50 
; 
ods show;
ods select ParameterEstimates; 
ods show;
proc glm data=DrugTest; 
class Drug Gender; 
model Y = Drug Gender Drug*Gender /clparm solution; 
quit;


proc glmselect data=DrugTest;
class Drug Gender; 
model Y = Drug Gender Drug*Gender/ selection=none stb showpvalues;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Ksharp_0-1688557758793.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/85562i79E875CD321A6453/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Ksharp_0-1688557758793.png" alt="Ksharp_0-1688557758793.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 05 Jul 2023 11:50:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/95-CI-for-standardized-beta-coefficients-in-proc-glm/m-p/883539#M349096</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2023-07-05T11:50:41Z</dc:date>
    </item>
    <item>
      <title>Re: 95 % CI for standardized beta coefficients in proc glm</title>
      <link>https://communities.sas.com/t5/SAS-Programming/95-CI-for-standardized-beta-coefficients-in-proc-glm/m-p/884281#M349341</link>
      <description>&lt;P&gt;Thanks so much for your explanation and the screenshots!&lt;/P&gt;&lt;P&gt;That helped a lot!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 11 Jul 2023 05:39:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/95-CI-for-standardized-beta-coefficients-in-proc-glm/m-p/884281#M349341</guid>
      <dc:creator>LB1993</dc:creator>
      <dc:date>2023-07-11T05:39:38Z</dc:date>
    </item>
    <item>
      <title>Re: 95 % CI for standardized beta coefficients in proc glm</title>
      <link>https://communities.sas.com/t5/SAS-Programming/95-CI-for-standardized-beta-coefficients-in-proc-glm/m-p/884451#M349420</link>
      <description>&lt;P&gt;Here is an example, based on my previous guidance. I use KSharp's example data so you can compare the methods:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data DrugTest; input Drug $ Gender $ X Y @@; 
datalines; 
A F 9 25 A F 3 19 A F 4 18 A F 11 28 A F 7 23 A M 11 27 
A M 9 24 A M 9 25 A M 10 28 A M 10 26 D F 4 37 D F 12 54 
D F 3 33 D F 6 41 D F 9 47 D M 5 36 D M 4 36 D M 7 40 
D M 10 46 D M 8 42 G F 10 70 G F 11 75 G F 7 60 G F 9 69 
G F 10 71 G M 3 47 G M 8 60 G M 11 70 G M 4 49 G M 4 50 
; 

/* If you don't need CL, you can use the STB option in 
   PROC GLMSELECT to get the standardized regression coefficients */
proc glmselect data=DrugTest;
   class Drug Gender; 
   model Y = X Drug Gender / selection=none STB;
   ods select ParameterEstimates;
quit;

/* If you require CLB, you have to use a longer manual calculation */
/* Step 1: Use the OUTDESIGN= option in PROC GLMSELECT to output the design matrix
           for the model. */
proc glmselect data=DrugTest noprint
               outdesign(addinputvars fullmodel)=GLSDesign;
class Drug Gender; 
model Y = X Drug Gender; 
quit;

/* Step 2: Use PROC STDIZE to standardize the explanatory variables, 
           including the dummy variables. */
proc stdize data=GLSDesign out=StdData method=std OPREFIX SPREFIX=Std;
   var  Y X Drug_A Drug_D Drug_G Gender_F Gender_M;
run;

/* Step 3: Use PROC REG to compute the parameter estimates for the (standardized) variables. */
options nolabel;   /* suppress labels: blogs.sas.com/content/iml/2012/08/13/suppress-variable-labels-in-sas-procedures.html */
proc reg data=StdData plots=none;
   Stdize: model StdY = StdX 
                        StdDrug_A StdDrug_D StdDrug_G 
                        StdGender_F StdGender_M / CLB;
   ods select ParameterEstimates;
quit;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 12 Jul 2023 12:24:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/95-CI-for-standardized-beta-coefficients-in-proc-glm/m-p/884451#M349420</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2023-07-12T12:24:46Z</dc:date>
    </item>
    <item>
      <title>Re: 95 % CI for standardized beta coefficients in proc glm</title>
      <link>https://communities.sas.com/t5/SAS-Programming/95-CI-for-standardized-beta-coefficients-in-proc-glm/m-p/884466#M349427</link>
      <description>Rick,&lt;BR /&gt;You missed CLB option of MODEL in PROC REG ？</description>
      <pubDate>Wed, 12 Jul 2023 11:46:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/95-CI-for-standardized-beta-coefficients-in-proc-glm/m-p/884466#M349427</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2023-07-12T11:46:30Z</dc:date>
    </item>
    <item>
      <title>Re: 95 % CI for standardized beta coefficients in proc glm</title>
      <link>https://communities.sas.com/t5/SAS-Programming/95-CI-for-standardized-beta-coefficients-in-proc-glm/m-p/885270#M349801</link>
      <description>&lt;P&gt;I wrote a summary of my thoughts in a blog post:&lt;BR /&gt;&lt;A href="https://blogs.sas.com/content/iml/2023/07/17/standardize-reg-coeff-class.html" target="_blank"&gt;Standardize regression coefficients for models that include categorical variables - The DO Loop (sas.com)&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 18 Jul 2023 14:00:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/95-CI-for-standardized-beta-coefficients-in-proc-glm/m-p/885270#M349801</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2023-07-18T14:00:01Z</dc:date>
    </item>
  </channel>
</rss>

